在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”命令。
最佳答案
我解决了。
<?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"