Creates the increment buffer according to current configuration.
()
| 1940 | * Creates the increment buffer according to current configuration. |
| 1941 | */ |
| 1942 | private void makeIncrementBuffer() { |
| 1943 | final int size = increment_buffer_size; |
| 1944 | increment_buffer = BufferedIncrement.newCache(this, size, |
| 1945 | increment_buffer_durable); |
| 1946 | if (LOG.isDebugEnabled()) { |
| 1947 | LOG.debug("Created increment buffer of " + size + " entries"); |
| 1948 | } |
| 1949 | } |
| 1950 | |
| 1951 | /** |
| 1952 | * Creates the increment buffer according to current configuration. |
no test coverage detected