Memcached

如何在不重新啟動整個 Web 伺服器的情況下重新啟動/清除記憶體記憶體?

  • October 15, 2021

/opt/eduserver/eduserver給了我選擇:

用法:/opt/eduserver/eduserver {start|stop|startphp|startwww|startooo|stopphp|stopwww|stopooo|restartphp|restartwww|restartooo|status|restart|reload|force-reload}

memcache.inimemcache 是 php 模組在哪裡/opt/eduserver/etc/php/conf.d

我想從命令行清除記憶體記憶體。我可以在不“接觸”網路伺服器的任何其他部分的情況下以某種方式做到這一點嗎?

是的。你可以清除記憶體記憶體。嘗試:

telnet localhost 11211
flush_all
quit

如果記憶體記憶體不在 localhost 11211 上執行,則必須對其進行調整。

這也可以使用 netcat

echo "flush_all" | nc -q 2 localhost 11211 

然後等待“OK”。

引用自:https://serverfault.com/questions/259114