Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using PHP + VoltDB together?

Is there any way to use voltDB in a PHP application?

It definitely seems like it have a few advantages over other Databases out there!

like image 749
Industrial Avatar asked Dec 12 '22 21:12

Industrial


2 Answers

Absolutely.

VoltDB has added a HTTP/JSON client interface to VoltDB which is available now for preview. You can download/build from http://community.voltdb.com/getinvolved#svn

Also, a C++ client library (via same page under "Client Interfaces for Other Programming Languages") exists and will be used to create a native client library for PHP. Join the community at http://community.voltdb.com to be updated.

like image 148
tmcallaghan Avatar answered Jan 01 '23 07:01

tmcallaghan


The native PHP client library that @tmcallaghan alluded to is now under development.

You can download/build it here:

https://svn.voltdb.com/clientapi/php/trunk/

And here's an example of it in use:

https://source.voltdb.com/browse/ClientAPI/php/trunk/examples/helloworld.php?r=HEAD

like image 27
Ed Mazur Avatar answered Jan 01 '23 07:01

Ed Mazur