This, of course, is possible as long as you gain access to some shared resources between both frameworks. There are probably several ways to do this, but one of the most obvious is to use some common backup storage, i.e. or maybe even memcached, which will be faster. I am not a Django user, but as far as I know, memcached is supported in it ...
There is, of course, a more complex scenario associated with this, and that is data compatibility . You will probably have to use some kind of interchangeable format that both structures understand, i.e. XML, JSON, BSON or the like. Therefore, even when using memcached, you will have to do this translation.
Robert Koritnik
source share