Skip to content

Commit

Permalink
add conqueue driver for benchmarking
Browse files Browse the repository at this point in the history
Signed-off-by: Keshava Munegowda <keshava.gowda@gmail.com>
  • Loading branch information
kmgowda committed May 24, 2024
1 parent 17f986c commit e3bd2cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions build-drivers.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ dependencies {
api project(':drivers:memcached')
api project(':drivers:dynamodb')
api project(':drivers:exasol')
api project(':drivers:conqueue')
/* api project(':drivers:sbktemplate') */
/* above line is a signature */
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Class for Concurrent Queue Benchmarking.
*/
public class ConcurrentQ implements Storage<byte[]> {
private Queue<byte[]> queue;
protected Queue<byte[]> queue;

@Override
public void addArgs(final InputOptions params) throws IllegalArgumentException {
Expand Down
1 change: 1 addition & 0 deletions settings-drivers.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,6 @@ include 'drivers:couchbase'
include 'drivers:memcached'
include 'drivers:dynamodb'
include 'drivers:exasol'
include 'drivers:conqueue'
/* include 'drivers:sbktemplate' */
/* above line is a signature */

0 comments on commit e3bd2cc

Please sign in to comment.