Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
themeEclipse
firstline1
titleMyJava
linenumberstrue
public GoraBenchmarkClient(){

      init(...) // handles connecting to the database and any setup issue

      read(...) //read a single record

      scan(...) //read a range of records

      update(...) //update record(s)

      insert(...) //Insert a record

      delete(...) //delete a single recordhttps://github.com/brianfrankcooper/YCSB/wiki/Core-Workloadsrecord

}

Class Diagram

The class diagram of the implementation is displayed below. The main class is the GoraBenchmarkClient class. The class contains a concrete implementation of the above methods. 

...