On Oct 29, 1:52 pm, outinsun <[EMAIL PROTECTED]> wrote:

> How do I make memcached access the "data store" via SOAP or REST
> instead of making a database call?

  You don't.  memcached is a place you put stuff.  It will only give
you what you put into it (and only sometimes).

  Your app has to do the right thing.

  One of the things we do a lot in ruby is write code like this:

    some_val = cache_get('some_key') { some_expensive_call }

Reply via email to