Skip to content

Commit

Permalink
Merge pull request #55 from dryman/OPIC-2
Browse files Browse the repository at this point in the history
Opic 2 More doc update
  • Loading branch information
dryman authored Apr 30, 2017
2 parents 7e388fd + 6c6437c commit 71eec89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 270 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ OPIC is a revolutionary serialization framework for C. Unlike traditional
approaches which walk through the in-memory objects and write it to disk, OPIC
itself is a memory allocator where all the objects created with it have the same
representation in memory and on disk. "Serializing/deserializing" is extreme
cheap with OPIC because it only requires memory dump and mmap syscalls.
cheap with OPIC, because the memory can write directly to disk, and the
deserialization is simply a mmap syscall.


OPIC is suitable for building database indexes, key-value store, or even search
engines. At the moment of writing we provide a POC hash table to demonstrate how
Expand Down Expand Up @@ -93,7 +95,7 @@ sudo sysctl vm.overcommit_memory=1
DATA STRUCTURES INCLUDED
------------------------

* RobinHoodHashing, can be used as
* RobinHoodHash, can be used as
- HashMap
- HashSet
- HashMultimap
Expand Down
102 changes: 0 additions & 102 deletions doc/index.md

This file was deleted.

166 changes: 0 additions & 166 deletions doc/rationale.md

This file was deleted.

0 comments on commit 71eec89

Please sign in to comment.