Hello agentzh,
Thank you so much for answering my newbie question in great details. That's very helpful. I discovered openresty only recently and is very impressed by its performance and especially the nice connectivity with memcached and redis.
I asked about the encrypted session module because I am considering migrating my PHP app to openresty. In php it is quite easy to store user specific data at server side like
session_start();
$_SESSION['nickname']= "Dave";
May I ask what would be the best way achieve similar function in openresty? I suppose it is somewhat like authenticate first with the encrypted session module and then get from redis/memcached/mysql, but I am still studying the documentation so your expert advice would be much helpful.
BTW I guess that is unlikely, but is that a way for PHP and openresty-lua to share the same session?
Thanks again and keep up on the good work!
Best Regards,
Arthur
fc2...@gmail.com於 2013年6月11日星期二UTC+8下午4時56分36秒寫道:
The instruction on https://github.com/agentzh/encrypted-session-nginx-module is about installing with native nginx. Is there a easy way to install it with openresty? Would something like ./configure --with-encrypted-session-nginx-module work?