Possible Duplicate:
How to make a real time “User is typing” notice to all in chat
I'm developing PHP MySQL jQuery/Ajax chat, and trying to enchase it with some fancy features like User is typing... message
I found plenty of topics users describing how to make requests to inform server user is typing message, but that's not issue. I need a help in next step :) How to make "handover" of isTyping variable from client to client using server? I want to try to avoid storing it as it can overwhelm DB engine with unnecessary data. Is there some way to do so just using servers RAM? This data is not crucial so possibility of losing it is not big deal. Memcached is also an option, but preferred not.
Tnx in advance