Re: need for caching POST requests

2010-01-13 Thread Hinnack
Yes I can read the code! As you can read in my first mail, I did not ask anybody to write it for me! I just asked if somebody did this before and if others have the same need! 2010/1/13 Tomasz Zieliński > On 13 Sty, 11:09, Hinnack wrote: > > there must be done more then this - e.g. the value of

Re: need for caching POST requests

2010-01-13 Thread Tomasz Zieliński
On 13 Sty, 11:09, Hinnack wrote: > there must be done more then this - e.g. the value of the key the data is > stored in cache has to be calculated from POST vars > instead of URL alone Why don't you take a look yourself: http://code.djangoproject.com/browser/django/tags/releases/1.1.1/django/co

Re: need for caching POST requests

2010-01-13 Thread Hinnack
there must be done more then this - e.g. the value of the key the data is stored in cache has to be calculated from POST vars instead of URL alone 2010/1/13 Tomasz Zieliński > > > On 13 Sty, 07:54, hinnack wrote: > > Hi, > > > > I need to cache POST requests, too, on certain requests. > > The

Re: need for caching POST requests

2010-01-13 Thread Tomasz Zieliński
On 13 Sty, 07:54, hinnack wrote: > Hi, > > I need to cache POST requests, too, on certain requests. > The requests are not changing data, but imagine an XMLRPC > service (that is based on POST requests only per spec anyway) uses > functions, that always return the same like 2 + 2 SHOULD always >

need for caching POST requests

2010-01-12 Thread hinnack
Hi, I need to cache POST requests, too, on certain requests. The requests are not changing data, but imagine an XMLRPC service (that is based on POST requests only per spec anyway) uses functions, that always return the same like 2 + 2 SHOULD always return 4 :-) The site I have could use the cachi