1. 23 8月, 2016 1 次提交
  2. 07 8月, 2016 1 次提交
  3. 30 7月, 2016 1 次提交
  4. 20 4月, 2016 1 次提交
  5. 02 4月, 2016 1 次提交
  6. 04 2月, 2016 1 次提交
  7. 17 9月, 2015 1 次提交
    • Y
      Fix the verbosity issue in Java makefile · 2e8e7eb3
      Yueh-Hsuan Chiang 提交于
      Summary:
      When running `make rocksdbjava V=1`, it currently does
      not print out the original command but something odd instead:
      
          mkdir -p jl/db
      
      This patch tries to fix this issue.
      
      Test Plan: make rocksdbjava V=1
      
      Reviewers: igor, sdong, IslamAbdelRahman, meyering
      
      Reviewed By: meyering
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D47061
      2e8e7eb3
  8. 05 8月, 2015 1 次提交
  9. 16 7月, 2015 2 次提交
  10. 15 7月, 2015 1 次提交
  11. 24 3月, 2015 1 次提交
    • F
      [RocksJava] Expose MemEnv in RocksJava · fd8804f9
      fyrz 提交于
      Summary:
      In 3.10 the C++ code was extended with a MemEnv implementation. This
      is now also available in RocksJava.
      
      Changes:
      - Extraced abstract super class Env
      - Introduced RocksMemEnv
      - Remove unnecessary disposeInternal method. The disposal of the default environment is managed by C++ so there needs to be no disposeInternal method in Java.
      - Introduced a RocksMemEnvTest, which is aligned with the C++ equivalent.
      
      Test Plan:
      make rocksdbjava
      make jtest
      
      Reviewers: adamretter, yhchiang, ankgup87
      
      Subscribers: dhruba
      
      Differential Revision: https://reviews.facebook.net/D35619
      fd8804f9
  12. 15 3月, 2015 2 次提交
    • F
      RocksJava - JNI Logger callback · 57f2a00c
      fyrz 提交于
      Summary:
      Within this commit a new AbstractLogger was introduced
      which allows to handle log messages at an application level.
      
      Log messages are passed up to Java using a JNI callback.
      
      This allows a Java-Developer to use common Java APIs for log
      messages e.g. SLF4J, LOG4J, etc. Within this commit no new
      dependencies were introduced, which keeps the RocksDB API clean
      and doesn`t force a developer to use a predefined high-level Java API.
      
      Another feature is to dynamically set a custom loggers verbosity at
      runtime using its public method `setInfoLogLevel` and to retrieve
      the currently active level using the `infoLogLevel` method.
      
      Test Plan:
      make clean jclean rocksdbjava jtest
      mvn -f rocksjni.pom package
      
      Reviewers: adamretter, ankgup87, yhchiang
      
      Subscribers: dhruba
      
      Differential Revision: https://reviews.facebook.net/D34755
      57f2a00c
    • F
      [RocksJava] Logging JNI callback · a3bd4142
      fyrz 提交于
      Within this commit a new AbstractLogger was introduced
      which pushes info log messages all the way up to Java.
      a3bd4142
  13. 13 3月, 2015 1 次提交
  14. 27 2月, 2015 1 次提交
  15. 02 2月, 2015 5 次提交
  16. 31 1月, 2015 2 次提交
  17. 28 1月, 2015 1 次提交
  18. 18 1月, 2015 1 次提交
  19. 15 1月, 2015 2 次提交
  20. 19 12月, 2014 1 次提交
    • F
      [RocksJava] Slice / DirectSlice improvements · b015ed0c
      fyrz 提交于
      Summary:
      - AssertionError when initialized with Non-Direct Buffer
      - Tests + coverage for DirectSlice
      - Slice sigsegv fixes when initializing from String and byte arrays
      - Slice Tests
      
      Test Plan: Run tests without source modifications.
      
      Reviewers: yhchiang, adamretter, ankgup87
      
      Subscribers: dhruba
      
      Differential Revision: https://reviews.facebook.net/D30081
      b015ed0c
  21. 27 11月, 2014 2 次提交
  22. 26 11月, 2014 3 次提交
  23. 22 11月, 2014 1 次提交
  24. 21 11月, 2014 1 次提交
  25. 20 11月, 2014 2 次提交
    • F
      [RocksJava] JavaDoc is executed too often · e7fcaa4d
      fyrz 提交于
      Previous to this commit too much targets got dependencies
      on javadocs target.
      
      Introduced one additional target "javalib" which resolves
      that situation. JavaDoc will now be generated once while
      executing a task with prefix "rocksdbjava".
      e7fcaa4d
    • F
      [RocksJava] Make cleanup - Clean Target · 2cd1794e
      fyrz 提交于
      - Remove JNI includes on clean
      - Remove target folder generated by Maven
      - Remove shared object
      - Remove jar
      2cd1794e
  26. 15 11月, 2014 3 次提交