package ancient

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

Install

Dune Dependency

Authors

Maintainers

Sources

0.9.1.tar.gz
sha256=e9003ee2f2d9e23153fb4189cd18a25a6b6931a8712510a382ded009fffbdec6
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

OCaml

Innovation. Community. Security.