I am a bit confused in how should I perform my operation using VoltDB
. There are two choice -
- Run
VoltDB
server, create a connection from the client and call your required procedure. - JSON HTTP Interface provided by the
VoltDB
itself.
I have different applications which need to access the data stored in VoltDB
, So I was writing code to connect and call required procedures, but later when I read about JSON HTTP Interface provided by the VoltDB
I realized that the data can be accessed over the HTTP APIs without connecting each application with VoltDB
.
Now I am confused which method should I choose and why?
I am pretty much in favor of using HTTP APIs provided by VoltDB
. But what are the implications of it?