MCPcopy Index your code
hub / github.com/OpenTSDB/asynchbase / setServerBlockCache

Method setServerBlockCache

src/Scanner.java:470–473  ·  view source on GitHub ↗

Sets whether or not the server should populate its block cache. @param populate_blockcache if false, the block cache of the server will not be populated as the rows are being scanned. If true (the default), the blocks loaded by the server in order to feed the scanner may be

(final boolean populate_blockcache)

Source from the content-addressed store, hash-verified

468 * @throws IllegalStateException if scanning already started.
469 */
470 public void setServerBlockCache(final boolean populate_blockcache) {
471 checkScanningNotStarted();
472 this.populate_blockcache = populate_blockcache;
473 }
474
475 /**
476 * Sets the maximum number of rows to scan per RPC (for better performance).

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected