Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 1021 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 1021 Bytes

Driver Development

This section should have everything you need to know to build a successful driver in NoSQLBench.

If you are new to NoSQLBench concepts, you may want to read about drivers.

You'll want to be generally familiar with the current NoSQLBench driver standards. This document explains what a well-behaved driver can do. Much of what is requested in driver standards is directly supported by a set of supporting APIs which are provided to all driver implementations. It may seem like a high bar to request this of developers, but without such guidelines, a bar is set nonetheless. The aim of this is to help define and clarify how to make a good driver.

Driver APIs

  • NBOpTemplate - Op Templating - This is the recommended way to map user-level semantics to driver-specific operations.
  • NBErrors - Uniform error handling - A modular and configurable error handler which new drivers should use by default.