Binary Search Tree

Ben Manes ben_manes at yahoo.com
Sat Sep 8 01:10:17 UTC 2007


This makes the assumption that the lock wasn't lost by LRU or a failed cache server.  If it was, then you could have two clients who believe they obtained the lock.  The domain might consider this an edge case problem that doesn't need to be solved, since it would be non-critical data that would self-heal later on.  However, that's a design decision and would need to be noted.  If you need a reliable lock, you'll likely need it register it in the database and manage it that way.

----- Original Message ----
From: Timo Ewalds <timo at tzc.com>
To: Chris Goffinet <goffinet at yahoo-inc.com>
Cc: memcached at lists.danga.com
Sent: Friday, September 7, 2007 10:10:18 AM
Subject: Re: Binary Search Tree




  

I don't quite follow what you're doing there, but you can always use a
different key as a lock to get rid of the race conditions. Just use an
add operation on the lock key instead of set. If the add worked, you
have the lock, if not, someone else does, and you can act appropriately
(skip, wait, whatever). The other thing you may care to know, is there
are incr and decr commands which are good for counters.



Timo



Chris Goffinet wrote:
I was wondering if anyone had any suggestions of trying to
implement a binary search tree using memcache? I know it wouldn't be a
good candidate if we had multiple memcache servers, but I was thinking
it might be doable if we partition the tree on 1 memcache node. 

  

  Our biggest concern at the moment is race conditions of the tree
updating. I thought a binary tree might solve the problem were having
and that is the following scenario:

  

  

  1) We have hundreds of memcache objects being created (imagine
rows in a database of users visiting a site)

  2) We need to have a running list of last 10 users for the hour,
without duplication of a users record. So we implemented the idea of a
counter:

  

  

    if(!memcache->get("userid:$hourofday")

    {

      $counter = memcache->set("counter",1);

      memcache->set("counter:$counter", payload);

      memcache->set("userid:$hourofday",1);

    }

  

  

   This
would create only 1 record per hour of day, increment the counter, so
we could build the key list in our application to pull last 10 items
for the hour. The issue we run into is what happens when the following
scenario happens:

  

  

    Hour
1 - > User A - Counter 1

    Hour
2 - > User A - Counter 2

    Hour 3 - > User A - Counter 3

  
    Hour 4 - > User A - Counter 4

    Hour 5 - > User A - Counter 5

  

  

  

  In
this case we would only just want to show User A one time especially
since its a list of user activity. We can't store a hash and just
push/pop because of race conditions (our first thought). If anyone has
any ideas, I'd really appreciate it!

  

  

  

  

  
  -Chris

  

   

  

  








      ____________________________________________________________________________________
Park yourself in front of a world of choices in alternative vehicles. Visit the Yahoo! Auto Green Center.
http://autos.yahoo.com/green_center/ 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.danga.com/pipermail/memcached/attachments/20070907/62675a8d/attachment.htm


More information about the memcached mailing list