-
To continue the discussion: I am playing with simple_replicated_objects_json Here I want the value of Foo to be something like a log list/vector, e.g. every time a node ordered_send a request, this request is appended in the Foo vector, and derecho guarantees consistent log sequence across all nodes. How can I do this? Any pointers to the example code? Thanks. Ken says But here if I have low-performance disks and I want in-memory operation, is it still possible to do "appending"? When you are saying "persistent mode", does it have to be really persistent storage? Can we just use memory as the storage backend? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Linux supports a feature called the /ramfs file system. If you set this up and then run the system while in a folder located on /ramfs (copy the needed config files over), the versioning will occur yet everything will be held in memory. |
Beta Was this translation helpful? Give feedback.
Linux supports a feature called the /ramfs file system. If you set this up and then run the system while in a folder located on /ramfs (copy the needed config files over), the versioning will occur yet everything will be held in memory.