我想知道是否可以将函数变量存储在 memcached 中。我编写了将 xml 模板编译成函数的基本模板系统。模板可以变得非常大,如果我可以缓存它,我想我可以提高性能。像这样的东西会起作用,还是我只是缓存对函数的引用?
$populate_template = function($values){
//compiled template
};
$memcached_object->set("some_key",$populated_template);
编辑:我确实意识到有php 加速器可以完全满足我的要求,但是能够使用 memcached 会容易得多,因为我不必经历获得另一项技术批准的过程。