如何与 Erlang 应用程序共享会话
我需要在 Erlang 中创建一个聊天。
有没有办法在 PHP 和 Erlang 应用程序之间共享会话?
I need to create a chat in Erlang.
Is there a way to share the session between PHP and Erlang applications ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这需要几个条件:
对于 PHP,这意味着你应该编写自己的会话处理程序(请参阅 http://nl2. php.net/manual/en/function.session-set-save-handler.php),据我所知,Erlang 可以使用相同的东西(好吧,Erlang 实现取决于你)。
可以使用 Erlang / PHP 桥接器,但严格来说没有必要,但它可以节省一些工作。
另请注意:http://code.google.com/p/mypeb/wiki/ ErlangAsSessionStorageForPHP
Yes, it would require several conditions:
For PHP this means you should write your own handler for a session (see http://nl2.php.net/manual/en/function.session-set-save-handler.php), as far as I gather Erlang can use the same thing (well, the Erlang implementation is up to you).
The Erlang / PHP bridge may be used, but strictly speaking it is not necessary, it could save some work though.
Also of note: http://code.google.com/p/mypeb/wiki/ErlangAsSessionStorageForPHP