I am guessing that your server is returning cached info on every
request after the initial one, up to whatever default limit is
compiled into your copy of Apache. Post requests are inherently non-
cacheable, so you weren't seeing that result there. Even though you
aren't sending any post data in your parameters hash, your request is
going over the post "channel" so the server always returns an unique
response. You could use Get if you also include some token, like the
current time in microseconds, in the parameters of your request.
{parameters:{foo: (new Date().getTime())}}
Hope this helps,
Walter
>
> --
> You received this message because you are subscribed to the Google
> Groups "Prototype & script.aculo.us" group.
> To post to this group, send email to prototype-s...@googlegroups.com
> .
> To unsubscribe from this group, send email to prototype-scripta...@googlegroups.com
> .
> For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en
> .
>