Explore the idea of ML module for datasets
  • OCaml 99.9%
  • Dune 0.1%
Find a file
Didier Wenzek b82fa635c7 Simply README.md
Signed-off-by: Didier Wenzek <didier.wenzek@acidalie.com>
2022-02-28 21:07:34 +00:00
bin Fix sample queries 2022-02-27 17:38:54 +00:00
lib Fix sample queries 2022-02-27 17:38:54 +00:00
test Init project data_module 2022-02-26 19:11:28 +00:00
.gitignore Init project data_module 2022-02-26 19:11:28 +00:00
data_module.opam Init project data_module 2022-02-26 19:11:28 +00:00
dune-project Init project data_module 2022-02-26 19:11:28 +00:00
LICENSE Add MIT License 2022-02-27 17:53:13 +00:00
README.md Simply README.md 2022-02-28 21:07:34 +00:00

Exploring the idea to use modules à la SML/OCaml to build a database as an assemblage of data modules.

Can we use OCaml modules to encapsulate datasets with all the mechanisms and information so a query engine can:

  • efficiently process datasets that have been independly designed,
  • abstract the queries from the actual internal representation of the data,
  • leverage cost information and indexes to build efficient execution plan.

See here for a more contextual motivation