Skip to content

Commit

Permalink
Update 20-fasterkv-basics.md
Browse files Browse the repository at this point in the history
  • Loading branch information
badrishc authored Feb 23, 2021
1 parent c8bf594 commit a35a4cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/_docs/20-fasterkv-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ All these call be accessed through Visual Studio via the main FASTER.sln solutio
FasterKV supports key iteration in order to get the set of distinct keys that are active (not deleted or expired) and indexed by the store. Related pull request is [here](https://github.com/microsoft/FASTER/pull/287). Usage is shown below:

```cs
using var iter = store.Iterate();
using var iter = session.Iterate();
while (iter.GetNext(out var recordInfo))
{
ref Key key = ref iter.GetKey();
Expand Down

0 comments on commit a35a4cd

Please sign in to comment.