How to share memory buffer across sessions in Django?
        Posted  
        
            by afriza
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by afriza
        
        
        
        Published on 2010-04-28T06:53:07Z
        Indexed on 
            2010/04/28
            7:23 UTC
        
        
        Read the original article
        Hit count: 399
        
I want to have one party (or more) sends a stream of data via HTTP request(s). Other parties will be able to receive the same stream of data in almost real-time.
The data stream should be accessible across sessions (according to access control list).
How can I do this in Django? If possible I would like to avoid database access and use in memory buffer (along with some synchronization mechanism)
© Stack Overflow or respective owner