SimpleVOC® – More than a Key-Value-Store

The high performing key-value-store SimpleVOC® is one of the fastest product of its kind (up to 150,000 requests/second). It is ready to use and simple to operate. Practical functions like the Prefix Query as well as the Extended Key Values makes the SimpleVOC® a flexible Database for high traffic web applications. Particularly the unlimited bucket size is very much appreciated by developers.

Keyfeatures

  • extended key values
    add additional information to a key-value pair for selective filtering, selective deletion etc.
  • dynamic bucket size
    results into a very economical memory consumption as the length of values is as large as the value needs.


  • prefix query in key
    prefix query in key provides the capability to query not only by the complete key, but also by keys that match a certain prefix.
  • snapshots and transaction logs
    snapshots and transaction logs enable you to create a consistent backup of your data in the file system.


More Features >

Code Example (PHP)


// new SimpleVOC object
$options = array('protocol' => 'http',
                 'name_host_1' => 'localhost',
                 'port_host_1' => 8000);
$sv = new SimpleVoc($options);


// insert a new key-value pair
$key = 'triagens';
$value = 'nosql-supplier from Cologne, Germany';
$options = array();
$sv->insert($key, $value, $options);


 // retrieve & print value for key “triagens”
 print $sv->getValue(‘triagens’);