It is not just memory sessions, any db where transactions have not 
completed for the first request and / or are not guaranteed to be in a 
consistent state can exhibit this behavior. This can also cause problems 
when storing data in a temporary location that may be cleared. This becomes 
even more troublesome when using multiple transports and you cannot easily 
use a single session store for all connections/requests, not everything is 
HTTP :/

On Sunday, June 17, 2012 5:24:18 PM UTC-5, Dan Milon wrote:
>
> That's why you should never use MemorySession for express, socket.io.
> Generally, any connection related data cant go in memory. 
>
> Bradley Meck <bradley.m...@gmail.com> wrote:
>
> Multiple connections can be made that keep state in a 
> non-transactional/distributed location. This can lead to things where one 
> worker gets a request, saves state in itself temporarily, and then another 
> worker gets a new request dependent on the state in the original worker.
>
> req1 -> A -> save state to memory/tmp location
> req2 -> B -> does not have req1's state
>
> On Sunday, June 17, 2012 4:44:47 PM UTC-5, ryandesign wrote:
>>
>> In what way? 
>>
>>
>> On Jun 17, 2012, at 03:08, Fadrizul H wrote: 
>>
>> > Yeah, clustering is awesome. But if you start using sockets or the 
>> module socket.io. then all hell breaks loose. >.< 
>>
>>  -- 
> Job Board: http://jobs.nodejs.org/
> Posting guidelines: 
> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
> You received this message because you are subscribed to the Google
> Groups "nodejs" group.
> To post to this group, send email to nodejs@googlegroups.com
> To unsubscribe from this group, send email to
> nodejs+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/nodejs?hl=en?hl=en
>

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to