JP
unread,Mar 11, 2009, 3:56:13 PM3/11/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to LightCloud
Hi,
I just started looking at lightcloud. It looks very interesting and
benchmarks well, but local_cache seems like a design flaw. I don't see
how to avoid the following:
host A sets key "a" to "a"
host B gets key "a", sets local cache of "a" to "a"
host A sets key "a" to "b"
host B gets key "a" -- still gets the old value "a" because setting on
host B doesn't invalidate host A's cache
(Or they could even be separate threads on the same host, since
local_cache is a thread local).
With local_cache in the mix, I can't see how an update would be seen
by all clients. Am I missing something?
JP