> But even when using pickling: when I try to access cache within django > backend - all is ok. But when I try to get data through nginx directly - > uwsgi just closes connection and nothing else happens. > > Maybe, nginx or uwsgi config I've provided is not correct?
Hi Lev, nginx expect a raw HTTP output from your caching system, if uWSGI contains pickled data, nginx will not be able to use them. If you plan to only store raw http output in your cache, simply modify the cache module to write raw strings instead of pickled data -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
