4

I'm guessing that Opa's graph-based database is written in OCaml. Is it available as a separate project so that it can be used from an OCaml program?

nlucaroni
  • 47,556
  • 6
  • 64
  • 86
aneccodeal
  • 8,531
  • 7
  • 45
  • 74

1 Answers1

4

Not quite. As the manual explains:

Opa is one technology, consisting of a programming language and its runtime, designed to carry web developers from start to finish of their development, from early prototype to seamless deployment.

So having a separate database was never a goal. However, Opa is written in a modular fashion and the database is a separate component, so I believe using it in a separate project would be mainly a matter of writing an interface layer for it.

akoprowski
  • 3,297
  • 1
  • 18
  • 26