On Sep 12, 4:17 pm, Ross <[EMAIL PROTECTED]> wrote: > If you create restful URLs that your forms forward to, the restful > URLs could be cached. (I'm not sure if restful is the real term, but > that's what I've heard them called.) Instead of your form directing to > > /url?param=search&sport=baseball&player=sosa > > have a view accept POSTs and return HttpResponseRedirect to /search/ > baseball/sosa.
You cannot just change from POST to GET, that is bad advice. GET and POST are used for a reason. If you have a search feature for example it would be correct to use GET parameters, not making restful URLs or redirecting stuff. But in that case, the response is not getting cached, that's true. I'd recommend not using the per-site cache, but rather try working with template cache tags. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---