Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
README nits
Browse files Browse the repository at this point in the history
  • Loading branch information
jpopelka committed Sep 10, 2019
1 parent 0eaaaf5 commit 21929c4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# persistentdict

Yet another [1] dictionary backed by Redis DB.
Yet another \[1\] dictionary backed by Redis DB.

We use Redis` 'hash' type [2] and store whole dictionary in one hash.
We use Redis` 'hash' type \[2\] and store whole dictionary in one hash.

Usage:
```python
Expand All @@ -28,5 +28,6 @@ if key in db:
del db[key]
```

[1] Alternatives: [persistent-dict](https://github.com/richardARPANET/persistent-dict), [durabledict](https://github.com/disqus/durabledict/)
[2] https://redis.io/topics/data-types-intro#hashes is basically Python's dict, but values can be strings only, so we use json serialization
\[1\] Alternatives: [persistent-dict](https://github.com/richardARPANET/persistent-dict), [durabledict](https://github.com/disqus/durabledict/)

\[2\] https://redis.io/topics/data-types-intro#hashes is basically Python's dict, but values can be strings only, so we use json serialization

0 comments on commit 21929c4

Please sign in to comment.