aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/pages/projects/graph_storage.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-11 19:25:25 +0200
committerAdrian Kummerlaender2014-09-11 19:25:25 +0200
commitc100d5a9856f01f1942c53272a0847f7cd2d5af4 (patch)
treeee6fc3370c708e5af44dfb5109b1ecdb393ab96f /source/00_content/pages/projects/graph_storage.md
parent64a42dfa705d3208a788390fc24af27512521c69 (diff)
downloadblog.kummerlaender.eu-c100d5a9856f01f1942c53272a0847f7cd2d5af4.tar
blog.kummerlaender.eu-c100d5a9856f01f1942c53272a0847f7cd2d5af4.tar.gz
blog.kummerlaender.eu-c100d5a9856f01f1942c53272a0847f7cd2d5af4.tar.bz2
blog.kummerlaender.eu-c100d5a9856f01f1942c53272a0847f7cd2d5af4.tar.lz
blog.kummerlaender.eu-c100d5a9856f01f1942c53272a0847f7cd2d5af4.tar.xz
blog.kummerlaender.eu-c100d5a9856f01f1942c53272a0847f7cd2d5af4.tar.zst
blog.kummerlaender.eu-c100d5a9856f01f1942c53272a0847f7cd2d5af4.zip
Expanded the content of some project pages
Diffstat (limited to 'source/00_content/pages/projects/graph_storage.md')
-rw-r--r--source/00_content/pages/projects/graph_storage.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/00_content/pages/projects/graph_storage.md b/source/00_content/pages/projects/graph_storage.md
index b7beef8..383eeee 100644
--- a/source/00_content/pages/projects/graph_storage.md
+++ b/source/00_content/pages/projects/graph_storage.md
@@ -1,12 +1,13 @@
# GraphStorage
-…is a Graph storage and query library based on LevelDB.
+…is a Graph storage and query library based on Google LevelDB.
-It currently supports integer indexed nodes with properties and directed edges with types. The integer IDs are serialized _by hand_, values are serialized using protocol buffers. Everything is stored in a single sorted LevelDB database.
+It currently supports integer indexed nodes with properties and directed edges with types. The integer IDs are serialized _by hand_, values are serialized using protocol buffers. Everything is stored in a single sorted [LevelDB] database.
Queries are possible trough a iterator like interface that handles single level queries quite fast. Additionally changes to edges can be monitored using a subscription mechanism.
The library is in development and while not intended for any kind of production usage the source code is available via both [Github] and [cgit].
-[Github]: https://github.com/KnairdA/GraphStorage
+[Github]: https://github.com/KnairdA/GraphStorage/
[cgit]: http://code.kummerlaender.eu/GraphStorage/
+[LevelDB]: https://code.google.com/p/leveldb/