Heroku PHP 内存缓存扩展
有没有办法在 Heroku 上使用/安装 PHP 的 memcache 扩展?我知道人们能够在这里使用 mongo 扩展。 memcache 扩展有类似的东西吗?这可能是目前阻止我使用 Heroku 的唯一原因。
Is there anyway to use / install the memcache extension for PHP on Heroku? I know people were able to get mongo extension working here. Is there anything similar for the memcache extension? This is probably the only thing keeping me from using Heroku at the moment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我编写了一个 PHP SASL Memcache 类
https://github.com/ronnywang/PHPMemcacheSASL
你可以在heroku上使用它。
I write a PHP SASL Memcache class in
https://github.com/ronnywang/PHPMemcacheSASL
You can use it on heroku.
如您所知,Heroku 使用 SASL 进行 memcache 身份验证。 SASL 需要 memcached (不是 memcache) 和 memcached 需要 libmemcached 已安装,但在 PHP Heroku 上我找不到它。
As you know, Heroku uses a SASL for memcache authentication. SASL requires memcached (not memcache) and memcached requires libmemcached installed and on PHP Heroku I don't find it.
如果您将插件安装到应用程序中,则从命令行 rubygem 运行时,您应该在应用程序配置中看到凭据/URL:
heroku config --app my_app
然后您可以根据需要进行连接到。
If you install the add-on into an application, you should see the credentials/URL in your applications config when run from the command line rubygem:
heroku config --app my_app
You can then connect however you need to.