this repo has no description
1opam-version: "2.0" 2authors: "Richard Jones et.al." 3homepage: "https://github.com/UnixJunkie/ocaml-ancient" 4bug-reports: "https://github.com/UnixJunkie/ocaml-ancient/issues" 5dev-repo: "git+https://github.com/UnixJunkie/ocaml-ancient.git" 6maintainer: "unixjunkie@sdf.org" 7build: [ 8 ["sh" "-c" "cd mmalloc && ./configure"] 9 [make "depend"] 10 [make] 11] 12remove: ["ocamlfind" "remove" "ancient"] 13depends: [ 14 "ocaml" {>= "4.03.0" & < "5.0.0"} 15 "ocamlfind" {build} 16] 17install: [make "install" "DESTDIR=%{lib}%"] 18flags: light-uninstall 19url { 20 src: "https://github.com/UnixJunkie/ocaml-ancient/archive/0.9.1.tar.gz" 21 checksum: [ 22 "sha256=e9003ee2f2d9e23153fb4189cd18a25a6b6931a8712510a382ded009fffbdec6" 23 "md5=4c6cd6a03f675b1972c0bb5a6f06b99b" 24 ] 25} 26synopsis: "Use data structures larger than available memory" 27description: """ 28This module allows you to use in-memory data structures which are 29larger than available memory and so are kept in swap. If you try this 30in normal OCaml code, you'll find that the machine quickly descends 31into thrashing as the garbage collector repeatedly iterates over 32swapped memory structures. This module lets you break that 33limitation. Of course the module doesn't work by magic :-) If your 34program tries to access these large structures, they still need to be 35swapped back in, but it is suitable for large, sparsely accessed 36structures. 37 38Secondly, this module allows you to share those structures between 39processes. In this mode, the structures are backed by a disk file, 40and any process that has read/write access that disk file can map that 41file in and see the structures. 42"""