memcache

  • 网络使用
memcachememcache
  1. The extension provides the API required to access the Memcache daemon 's services .

    该扩展将提供访问Memcache守护程序的服务所需的API。

  2. The Memcache PHP extension provides a simple application program interface ( API ) to access the cache .

    MemcachePHP扩展将为访问缓存提供一个简单的应用程序接口(API)。

  3. The process to build the Memcache extension is identical to that of other PHP extensions

    构建Memcache扩展的过程与构建其他PHP扩展的过程完全相同

  4. The Memcache daemon , called memcached , is a high-performance distributed object cache .

    名为memcached的Memcache守护程序是一种高性能的分布式对象缓存。

  5. A Boolean to control whether the Memcache extension fails over to other servers if a connection error occurs .

    一个布尔值,用于控制当连接出错时Memcache扩展是否故障转移到其他服务器上。

  6. The solution in this case was to switch to memcache and to stop using state on any app server they had .

    此处的解决方案是切换到memcache并在所有应用服务器上不再使用状态。

  7. The Google App Engine provides some useful infrastructure , including both its GFS derived data store and a memcache implementation .

    GoogleAppEngine提供了一些有用的基础设施,比如源自GFS的数据存储和一个memcache实现。

  8. This is often the case if you will be using a solution like memcache to have a separate user cache server for a multi-web server environment .

    如果您要使用memcache这样的解决方案来为多web服务器环境提供一个单独的用户缓存服务器,那么这就是常见情况。

  9. Servers run instances of the memcache daemon , which allocates a block of RAM that 's accessible over a simple network protocol .

    服务器运行memcache守护进程的实例,这些进程分配一块可以通过一种简单的网络协议访问的RAM。

  10. A JCache ( JSR107 ) interface to Memcache to provide fast , temporary distributed storage for caching queries and calculations

    一个通向Memcache的JCache(JSR107)接口,提供快速、临时的分布式存储,用于缓存查询和计算

  11. For Reddit , the key for speed is " pre-compute everything and dump it on memcache . "

    对Reddit而言,速度的关键是“预先计算所有内容并放入memcache。”

  12. GAE 's quota on memcache calls is higher than on datastore calls , so it makes sense to use memcache whenever possible .

    GAE对Memcache调用的配额比对数据存储调用高,因此尽可能使用memcache是有意义的。

  13. Note that Objectify 's query calls still hit the datastore ; it 's all other datastore interaction calls , like get , that leverage memcache .

    请注意Objectify的query调用仍然针对数据存储;这就是利用了memcache的所有其他数据存储交互调用,如get。

  14. Reddit started to use memcache for about everything : database data , session data , rendered pages , memorizing internal functions , pre-computed pages , global locking .

    Reddit的所有内容都使用了memcache:数据库的数据、会话数据、渲染的页面、存储的内部函数、预先计算的页面、全局锁。

  15. Applications wishing to store or retrieve a piece of data within memcache first hash the key , which tells them which server out of the memcache pool to use .

    希望在memcache中存储或获取数据的应用程序首先对键进行散列计算,这告诉它们应该使用memcache池中的哪个服务器。

  16. Just add @ Cached to your domain objects and presto ! the data ( not the corresponding Java ™ object ) is stored in memcache and can be retrieved from memory on application reads .

    只将@Cached添加到您的域对象,这样数据(不是相应的Java™对象)将存储在memcache中且可在应用程序读取时从内存检索这些数据。

  17. APC and Wincache aren 't the only choices for a user cache ; memcache and Redis are other popular choices that don 't require you to run the user cache on the same server as the Web server .

    memcache和Redis是不需要您在与Web服务器相同的服务器上运行用户缓存的其他流行选择。