[ANN] BAP 2.1.0 Release

I hope at least one of them will match your definitions of simple and embedded :slight_smile:

$ opam search 'key-value' 
# Packages matching: match(*key-value*)
# Name                # Installed # Synopsis
arakoon               --          A distributed key-value store that guarantees consistency above anything else.
bap-primus-dictionary --          BAP Primus Lisp library that provides dictionaries
cryptodbm             --          Encrypted layer over the dbm library: access to serverless, key-value databases with symmetric encryption.
dokeysto              --          The dumb OCaml key-value store
dokeysto_camltc       --          The dumb OCaml key-value store w/ tokyocabinet backend
dokeysto_lz4          --          The dumb OCaml key-value store w/ LZ4 compression
gmap                  0.3.0       Heterogenous maps over a GADT
index                 --          A platform-agnostic multi-level index for OCaml
kyotocabinet          --          OCaml bindings for Kyoto Cabinet DBM
mirage-kv             --          MirageOS utilities for interfacing with key-value stores.
mirage-kv-lwt         --          MirageOS utilities for interfacing with key-value stores.
mirage-kv-unix        --          Key-value store for MirageOS backed by Unix filesystem
podge                 --          Shortcuts and helpers for common tasks in OCaml ecosystem
redis                 --          Bindings for the key-value cache and store redis.
ringo                 --          Caches (bounded-size key-value stores) and other bounded-size stores
string_dict           --          Efficient static string dictionaries
tezos-storage         --          Tezos: low-level key-value store for `tezos-node`
trakeva               --          Transactions, Keys, and Values; with Postgresql and/or Sqlite.
1 Like

Thatā€™s great. Weā€™ve seen lots of 10-20% improvements, but I canā€™t think of a case where things went 40% faster.

Interesting. We definitely see a big blowup in total artifact size, but less so in the final executables. Iā€™m curious whatā€™s causing that. For what itā€™s worth, thereā€™s been some tantalizing progress towards better whole-program dead-code elimination. Not sure where that will end up, but Iā€™m hoping weā€™ll have something to announce in the coming months.

6 Likes

The binary itself is four times larger (25 vs 100 Mb), which is partially because we have the -linkall option to enable loading plugins in runtime. When I started to count our dependencies, i.e., the dependencies that are linked into the binary, I found out that roughly 30Mb is core_kernel, bap libraries together comprise less than 5 megabytes, and the runtime is about 1Mb. And yes it doesnā€™t sum up to 100 Mb.

When I used readelf to examine the structure of the binary, I discovered that the rela.dyn section (the section with relocations is 20Mb large. Funny, it is even smaller than the .text section that contains the actual code, which is only 17Mb large. And yes, we also have 20Mb of dwarf information. To summarize, out of 100Mb only 17Mbytes is the actual code (17%) the rest 83% is some auxiliary information.

Core Theory and Knowledge Base are much more interesting concept. BIL is so XX century, CT is the future! See:

2 Likes

Re: k/v store, thereā€™s also ā€œorocksdbā€. Wrapper for ā€œRocksDBā€, which should be plennty powerful.

1 Like

There are also lmdb bindings, for the basics.

1 Like

There are two draft PRs to discuss these options as global opam flags:

Was there anything decided about that? Enabling these optimizations for the whole switch would be a tremendous help for the OCaml-written services deployment.

1 Like