in reply to Re: Site Scalability with Cache::Memcached
in thread Site Scalability with Cache::Memcached

No, the point of memcached is that fetching simply keyed data from a special-purpose daemon can be tons faster than fetching from a database.

A tied interface is also tons faster than fetching things over a network. So the overhead of the former (compared to method calls which are slower than plain function calls which are slower than C code) is not at all in conflict with the purpose of memcached.

- tye        

  • Comment on Re^2: Site Scalability with Cache::Memcached (proportion)

Replies are listed 'Best First'.
Re^3: Site Scalability with Cache::Memcached (proportion)
by perrin (Chancellor) on Dec 08, 2005 at 13:46 UTC
    It's certainly a step in the wrong direction, if fast lookups are what you're after. Many people imagine that TIE will make things faster, so pointing out that it makes things slower seems useful to me.