1. 23 May, 2011 4 commits
  2. 20 May, 2011 1 commit
  3. 19 May, 2011 7 commits
  4. 18 May, 2011 10 commits
  5. 17 May, 2011 16 commits
  6. 16 May, 2011 2 commits
    • cache: Drop cuckoo hashing · 335d6c99
      Now we use a simple closed-addressing cache. Cuckoo hashing was creating
      too many issues with race conditions. Fuck that.
      
      Let's see what happens performance wise, we may have to roll back or
      come up with another way to implement an efficient multi-threaded cache.
      Vicent Marti committed
    • cache: Fix deadlock · 3de79280
      Do not try to adquire the same node lock twice when the cuckoo hashing
      resolves to the same node.
      Vicent Marti committed