Hi Kyle, I'm thinking you will have reentrant issues, in other words, a single instance of a serializer will not be thread/process safe. If you *dir(instance)* you will see a whole lot of member objects that will be instance-specific data. Django is pretty good at handling multiple instances of requests, so don't try to do what Django is already doing. The best thing you can do to increase the speed of your request/responses is to do backend caching with Redis. You write code that intercepts the data coming from your models (or wherever the data comes from) and caches it.
~Carl -- You received this message because you are subscribed to the Google Groups "Django REST framework" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-rest-framework/41b0f8c9-9180-4e2c-adf6-17eeea899415%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
