diff options
author | Benjamin Trigona-Harany <slackbuilds@jaxartes.net> | 2017-04-16 18:01:20 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-16 18:01:20 +0700 |
commit | 8ae285310e0a66b1e60527601316c968e5af1911 (patch) | |
tree | 7bfbcfa6164aec01fd09ab46d0fd84993fb94833 /python/python3-pickleshare/README | |
parent | 99980b018565f84d8099e6c9106eaae60cb4f929 (diff) |
python/python3-pickleshare: Added (FS-based database for Python 3).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-pickleshare/README')
-rw-r--r-- | python/python3-pickleshare/README | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/python/python3-pickleshare/README b/python/python3-pickleshare/README new file mode 100644 index 0000000000000..c7c034a911541 --- /dev/null +++ b/python/python3-pickleshare/README @@ -0,0 +1,9 @@ +PickleShare is a small shelve-like datastore with concurrency support. + +Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike +shelve, many processes can access the database simultaneously. Changing a value +in database is immediately visible to other processes accessing the same +database. + +Concurrency is possible because the values are stored in separate files. Hence +the "database" is a directory where all files are governed by PickleShare. |