1. 08 11月, 2016 5 次提交
  2. 06 11月, 2016 2 次提交
    • A
      Java API - Implement GetFromBatch and GetFromBatchAndDB in WBWI · 24bceb09
      Adam Retter 提交于
      Summary:
      Needed for working with `get` after `merge` on a WBWI.
      Closes https://github.com/facebook/rocksdb/pull/1093
      
      Differential Revision: D4137978
      
      Pulled By: yhchiang
      
      fbshipit-source-id: e18d50d
      24bceb09
    • A
      Insert range deletion meta-block into block cache · 815f54af
      Andrew Kryczka 提交于
      Summary:
      This handles two issues: (1) range deletion iterator sometimes outlives
      the table reader that created it, in which case the block must not be destroyed
      during table reader destruction; and (2) we prefer to read these range tombstone
      meta-blocks from file fewer times.
      
      - Extracted cache-populating logic from NewDataBlockIterator() into a separate function: MaybeLoadDataBlockToCache()
      - Use MaybeLoadDataBlockToCache() to load range deletion meta-block and pin it through the reader's lifetime. This code reuse works since range deletion meta-block has same format as data blocks.
      - Use NewDataBlockIterator() to create range deletion iterators, which uses block cache if enabled, otherwise reads the block from file. Either way, the underlying block won't disappear until after the iterator is destroyed.
      Closes https://github.com/facebook/rocksdb/pull/1459
      
      Differential Revision: D4123175
      
      Pulled By: ajkr
      
      fbshipit-source-id: 8f64281
      815f54af
  3. 05 11月, 2016 2 次提交
  4. 04 11月, 2016 3 次提交
  5. 03 11月, 2016 1 次提交
  6. 02 11月, 2016 3 次提交
  7. 01 11月, 2016 6 次提交
  8. 30 10月, 2016 3 次提交
  9. 29 10月, 2016 10 次提交
  10. 28 10月, 2016 1 次提交
  11. 26 10月, 2016 2 次提交
    • K
      Makefile: generate util/build_version.cc from .in file (#1384) · 60a2bbba
      Kefu Chai 提交于
      * util/build_verion.cc.in: add this file, so cmake and make can share the
        template file for generating util/build_version.cc.
      * CMakeLists.txt: also, cmake v2.8.11 does not support file(GENERATE ...),
        so we are using configure_file() for creating build_version.cc.
      * Makefile: use util/build_verion.cc.in for creating build_version.cc.
      Signed-off-by: NKefu Chai <tchaikov@gmail.com>
      60a2bbba
    • S
      Disable DBTest.RepeatedWritesToSameKey (#1420) · 9ee84067
      Siying Dong 提交于
      Summary:
      The verification condition of the test DBTest.RepeatedWritesToSameKey doesn't hold anymore after 3ce3bb3d.
      Disable the test for now before we find a way to replace it.
      
      Test Plan: Run the test and make sure it is disabled.
      9ee84067
  12. 25 10月, 2016 2 次提交