Commit 14915a38 by Krishnan Sanjay

Update ooc.py

parent cf6d9f48
Showing with 2 additions and 2 deletions
...@@ -59,14 +59,14 @@ class MemoryLimitedHashMap(object): ...@@ -59,14 +59,14 @@ class MemoryLimitedHashMap(object):
def keys(self): def keys(self):
''' '''
Returns a set of keys. Tuple Returns a set of keys (in memory). Tuple
is (key, location) is (key, location)
''' '''
return set([k for k in self._data]) return set([k for k in self._data])
def fKeys(self): def flushed(self):
''' '''
Returns a set over keys that have been flushed. Returns a set over keys that have been flushed.
Tuple is (key, location) Tuple is (key, location)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment