package ancient

  1. Overview
  2. Docs
Use data structures larger than available memory

Install

Dune Dependency

Authors

Maintainers

Sources

0.9.1.tar.gz
md5=4c6cd6a03f675b1972c0bb5a6f06b99b

Description

This module allows you to use in-memory data structures which are larger than available memory and so are kept in swap. If you try this in normal OCaml code, you'll find that the machine quickly descends into thrashing as the garbage collector repeatedly iterates over swapped memory structures. This module lets you break that limitation. Of course the module doesn't work by magic :-) If your program tries to access these large structures, they still need to be swapped back in, but it is suitable for large, sparsely accessed structures.

Secondly, this module allows you to share those structures between processes. In this mode, the structures are backed by a disk file, and any process that has read/write access that disk file can map that file in and see the structures.

Published: 07 Mar 2019

Dependencies (2)

  1. ocamlfind build
  2. ocaml >= "4.03.0" & < "5.0.0"

Dev Dependencies

None

Used by

None

Conflicts

None