如何将 Google App Engine 的内存缓存与 Quercus 结合使用?

发布于 2024-10-17 12:48:09 字数 407 浏览 4 评论 0原文

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

我想对他们的 Google App Engine 内存缓存执行类似的操作,最好全部在 PHP 代码中,因为 Quercus 在 PHP 代码中允许使用“导入”命令。

On http://blog.caucho.com/?p=196, they have made Quercus run App Engine's datastore with PHP. Their source is at http://wordpress-on-quercus.appspot.com/wordpress-on-gae-quercus.zip

I would like to do something similar with their Google App Engine's memcache, preferably all in the PHP code since Quercus has the "import" command allowed within the PHP code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聽兲甴掵 2024-10-24 12:48:09

我解决了。

<?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"

I solved it.

<?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"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文