package benchclient // this package is a single benchmark client, i.e. a worker import "dbconnector"; var myID int; func Setup(ID int) { myID = ID; if myID == 1 { // create the db } } func Begin() { // start the test // first, populate data for pre-run // this will mean creating x number of rows of data depending on input // now, run the test // the test will be insert, drop, update, select queries across multiple tables } func End() { // the main controller said CEASE! }