-
Flush_all is the final memcached command to be learned.
flush_all 是最后一个要介绍的命令。
-
The Memcached client optimization was intended to optimize cluster load.
Memcached客户端的优化目的是试图优化集群负载。
-
Another recent refinement added queue persistence via a memcached cluster.
另一个最新的改良通过一个 memcached 集群增加队列持久性。
-
Also, keep in mind that memcached is just a key/value store.
此外,要记住 memcached 只是一个键/值的存储。
-
The changes were done in three areas: cache, MQ and Memcached client.
这一改动主要在于三个方面:缓存,MQ以及Memcached客户端。
-
Memcached uses a per-connection buffer to read and write data out over the network.
memcached为每个链接使用单独的缓存进行数据的读写。
-
Caching is an essential part of any high-volume Web application and memcached is a great caching option.
缓存是任何海量 Web 应用程序不可或缺的部分。
-
In the second part of this article, you will learn how to integrate memcached into a Grails application.
在本系列的第 2 部分中,您将学习如何将 memcached 集成到一个 Grails 应用程序中。
-
In this situation, you can take advantage of other components in the modern web app arsenal, such as memcached.
在这种情况下,可以充分利用现代 web 应用程序工具组中其他组件(比如 memcached)的优势。
-
You will use the five basic memcached commands for the simplest of operations. These commands and operations are
您将使用五种基本 memcached 命令执行最简单的操作。
memcached是一套分布式的高速缓存系统,由LiveJournal的Brad Fitzpatrick开发,但被许多网站使用。这是一套开放源代码软件,以BSD license授权发布。 memcached缺乏认证以及安全管制,这代表应该将memcached服务器放置在防火墙后。 memcached的API使用三十二比特的循环冗余校验(CRC-32)计算键值后,将数据分散在不同的机器上。当表格满了以后,接下来新增的数据会以LRU机制替换掉。由于memcached通常只是当作缓存系统使用,所以使用memcached的应用程序在写回较慢的系统时(像是后端的数据库)需要额外的代码更新memcached内的数据。