I have to design a website to fill in some data about books with great automatic completion. Each page has about 1,500 ajax requests per server!
So, I decided to do the bulk of this using the Yii framework and instead of using ajax, Socket.IO from NodeJS for a quicker response.
Now the problem is the synchronization of session data between the two programming languages. Is it safe to use memcached to save it?
I mean saving SESSIONID as the key name in memcached and using JSON for the value. so I can access it through PHP and NodeJS. It is safe?
source share