Add an option to disable aggregating reads in the proxy
[bluesky.git] / bluesky / bluesky.h
index 674fa8b..69f215a 100644 (file)
@@ -48,6 +48,9 @@ typedef struct {
 
     /* Disable cryptography.  This is for benchmarking purposes. */
     int disable_crypto;
+
+    /* Disable aggregation of read requests.  Fetch items individually. */
+    int disable_read_aggregation;
 } BlueSkyOptions;
 
 extern BlueSkyOptions bluesky_options;