如何在Quercus中使用Google App Engine内存缓存?

时间:2011-02-13 02:03:08

标签: java php google-app-engine memcached quercus

http://blog.caucho.com/?p=196上,他们让Quercus使用PHP运行App Engine的数据存储区。他们的来源是http://wordpress-on-quercus.appspot.com/wordpress-on-gae-quercus.zip

我想用他们的Google App Engine的memcache做类似的事情,最好是在PHP代码中,因为Quercus在PHP代码中允许使用“import”命令。

1 个答案:

答案 0 :(得分:1)

我解决了。

<?php
import com.google.appengine.api.memcache.MemcacheService;
import com.google.appengine.api.memcache.MemcacheServiceFactory;

$service = MemcacheServiceFactory::getMemcacheService();
$service->put("key", "this is the value");
echo $service->get("key"); // outputs "this is the value"