Re: Loading XSD file into memory ONCE

2012-12-10 Thread Ludwig Kraatz
Hi Dwayne, I would suggest just use the django cache api: https://docs.djangoproject.com/en/dev/topics/cache/#the-low-level-cache-api Memcache is able to store 1mb Value. https://docs.djangoproject.com/en/dev/topics/cache/#memcached If you don't have / want a memcache instance, you can use loc

Re: Loading XSD file into memory ONCE

2012-12-10 Thread Tom Evans
On Sun, Dec 9, 2012 at 8:05 AM, Dwayne Ghant wrote: > Hello All, > > I will be short and sweet. I have a simple (well at least I think it's > simple) question. First let me explain, I'm writing a RESTful webservice > that uses validates xml submissions using an xsd (440kb in size), > pre-define

Loading XSD file into memory ONCE

2012-12-09 Thread Dwayne Ghant
Hello All, I will be short and sweet. I have a simple (well at least I think it's simple) question. First let me explain, I'm writing a RESTful webservice that uses validates xml submissions using an xsd (440kb in size), pre-defined, schema. I would, idealistically, like to bootstrap the sc