2

我正在为我的 Web 应用程序寻找 GUI 界面,以查看 memcached 的统计信息。使用多少 memcached,多少是免费的。

如果它可以显示存储在 memcache 中的键并以图表等形式显示消耗的 memcache 的增长,那就太好了

我开始了解一个,但它处于非常早期的开发阶段。

有什么建议么?

很高兴拥有:

  • 如果它能与我的 rails 应用程序顺利集成,那就太好了。
  • 一个单独的子域将起作用。
  • PHP、Python 或任何其他解决方案都可以使用

在 Heroku 上,我运行了另一个应用程序,并且memcache插件为它提供了足够好的接口。这是屏幕截图。

在此处输入图像描述

4

1 回答 1

2

There are numerous tools doing what you want; a very basic one (single PHP file) is MemachedGUI; a more complex one is phpMemcachedAdmin .

There isn't "one memcached GUI to rule them all"; however, the 2 projects cited above being open source, you should be able to customize them fairly easily to do your bidding (especially with regards to graph etc.).

Do keep in mind that there isn't a way to reliably and comprehensively view all the keys stored in memcached; tools that do display that are using this trick, which is very limited.

于 2013-06-27T21:19:29.650 回答