From c2734e65e6f1c7808d44255b6e87d93a4af11786 Mon Sep 17 00:00:00 2001 From: Krishnan Sanjay Date: Thu, 21 May 2020 11:33:02 -0500 Subject: [PATCH] Update README.md --- hw5/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hw5/README.md b/hw5/README.md index 81ac6ff..ce3dfda 100644 --- a/hw5/README.md +++ b/hw5/README.md @@ -123,6 +123,11 @@ We can similarly iterate over all of the flushed data (which optionally takes a for k,v in m.loadAll(): print(k,v) ``` +It also takes in an optional parameter that includes the in memory keys as well: +``` +for k,v in m.loadAll(subkey='myskey', inMemory=True): + print(k,v) +``` Since there are some keys in memory and some flushed to disk there are two commands to iterate over keys. ``` -- libgit2 0.25.0