Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是一个简单的问题,问是否可以使用一个简单的脚本来缓存所有网站数据库查询?还是你必须走很长的路?
这取决于您正在使用的环境...如果您使用的是 OOP DB 概念,您可以在 $db->query($sql) 或任何所谓的方法检查中,如果密钥 $sql 存在于内存缓存中。
如果没有,则以 $sql 为键进行查询和缓存结果。
如果确实存在,则从 memcache 返回结果...