使用 php 查找 memcached 大小

发布于 2024-10-27 17:00:24 字数 159 浏览 1 评论 0原文

我正在使用 PHP memcached 来存储记录。但它在缓存中存储的记录不超过 2000 条。

我很感兴趣地发现:

  1. Memcached 中可以存储多少条记录?
  2. 如何计算Memcached的大小以及缓存中存储的最大限制是多少?

I am using PHP memcached for storing records. But it is not storing more than 2000 records in the cache.

I am interesting in finding:

  1. How many records can be stored in Memcached?
  2. How to calculate the size of Memcached and what is the max limit to store in the cache?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小伙你站住 2024-11-03 17:00:24

缓存的最大限制:

  • 这取决于您指定 memcached 可以使用的内存量 - 这是在启动 memcached 时完成的。
  • 但请注意,您存储在缓存中的每个项目不能超过 1 MB

缓存中数据的大小、缓存中项目的数量:有 PHP 函数可以帮助实现这一点;根据您用于连接到 memcached 的扩展,请参阅:

memcached 中可以存储的最大项目数:

  • 我从未在一台服务器上达到过任何限制;我在常见问题解答
  • 无论如何,如果您当前使用的服务器达到了任何可能的限制,只需添加一个额外的守护进程:memcached 作为一个集群工作;-)

Maximum limit of the cache :

  • it depends on how much memory you indicated memcached can used -- this is done when starting memcached.
  • Note, though, that each item you store in cache cannot be more than 1 MB

Size of the data in cache, number of items in cache : there are PHP functions which can help with that ; depending on the extension you are using to connect to memcached, see :

Maximum number of items you can store in memcached :

  • I've never hit any limit on one server ; and I've not found any number in the FAQ
  • Anyway, if you hit any possible limit with the servers you are currently using, just add one additional daemon : memcached works as a cluster ;-)
世俗缘 2024-11-03 17:00:24

Memcached 大小由您的主机设置。通常您可以增加它,但这样做通常也需要付费。

如果您在本地计算机上进行开发,根据 memcached 文档,您可以使用 memcached -m [size] 设置限制。

我在此处找到了一个 perl 实用程序,它似乎可以转储出您正在查找的确切信息寻找。

Memcached size is set by your host. You can generally have it increased, but it also usually costs to do so.

If you're developing on a local machine, according to memcached docs, you can set the limit with memcached -m [size].

I found a perl utility here that seems to dump out the exact information that you're looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文