]>
git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/log
summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Yueh-Hsuan Chiang [Wed, 25 Mar 2015 21:14:26 +0000 (14:14 -0700)]
Add a missing section title in HISTORY.md
Summary:
Add a missing section title in HISTORY.md
Test Plan:
no code change
Yueh-Hsuan Chiang [Wed, 25 Mar 2015 18:08:08 +0000 (11:08 -0700)]
Fixed a typo in RocksDBSample.java
Summary:
Fixed a typo in RocksDBSample.java
Test Plan:
make clean
make rocksdbjava -j32
make jtest
Jim Meyering [Wed, 25 Mar 2015 05:09:40 +0000 (22:09 -0700)]
build: cause the "check" rule to depend on $(PROGRAMS)
Summary:
* Makefile (check): Cause "make check" to build all $(PROGRAMS),
so that it verifies that the few benchmark-only source files that
not already built via "make check" do compile and link successfully.
Test Plan:
run "make clean; make check", and verify that
table/table_reader_bench.cc is now compiled.
Before, it was not, which led to an incomplete fix
for a build break.
Reviewers: ljin, igor.sugak, rven, igor, sdong
Reviewed By: sdong
Subscribers: dhruba
Differential Revision: https://reviews.facebook.net/D35883
Anurag Indu [Wed, 25 Mar 2015 00:00:41 +0000 (17:00 -0700)]
Merge branch 'master' of github.com:facebook/rocksdb
Anurag Indu [Tue, 24 Mar 2015 23:53:49 +0000 (16:53 -0700)]
Fix build
Test Plan: Running make all
Reviewers: sdong
Reviewed By: sdong
Subscribers: rven, yhchiang, igor, meyering, dhruba
Differential Revision: https://reviews.facebook.net/D35889
Yueh-Hsuan Chiang [Tue, 24 Mar 2015 23:39:39 +0000 (16:39 -0700)]
Update HISTORY.md for 3.10.0
Summary: Update HISTORY.md for 3.10.0
Test Plan: no code chagne.
Reviewers: sdong, rven, igor
Reviewed By: igor
Subscribers: dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D35871
Anurag Indu [Tue, 24 Mar 2015 23:27:39 +0000 (16:27 -0700)]
Merge branch 'master' of github.com:facebook/rocksdb
Anurag Indu [Tue, 24 Mar 2015 22:06:09 +0000 (15:06 -0700)]
Fixing build issue
Summary: Fixing issues with get context function.
Test Plan: Run make commit-prereq
Reviewers: sdong, meyering, yhchiang
Reviewed By: sdong
Subscribers: dhruba
Differential Revision: https://reviews.facebook.net/D35853
Yueh-Hsuan Chiang [Tue, 24 Mar 2015 22:39:42 +0000 (15:39 -0700)]
Merge pull request #555 from pshareghi/staticLZ4
[RocksJava] Added static lz4 support for roccksjavastatic
Yueh-Hsuan Chiang [Tue, 24 Mar 2015 21:58:00 +0000 (14:58 -0700)]
Merge pull request #556 from fyrz/RocksJava-Maven-Fix
[RocksJava] Maven build fix
Yueh-Hsuan Chiang [Tue, 24 Mar 2015 21:50:32 +0000 (14:50 -0700)]
Fix compile error when NROCKSDB_THREAD_STATUS is not used.
Summary: Fix compile error when NROCKSDB_THREAD_STATUS is not used.
Test Plan: make dbg OPT=-DNROCKSDB_THREAD_STATUS -j32
Reviewers: sdong, igor, rven
Subscribers: dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D35847
fyrz [Tue, 24 Mar 2015 21:52:30 +0000 (22:52 +0100)]
[RocksJava] Maven build fix
Pooya Shareghi [Tue, 24 Mar 2015 17:40:00 +0000 (10:40 -0700)]
Added static lz4 support for roccksjavastatic
Usage:
make clean rocksdbjavastatic
Dependency:
LZ4
To install LZ4:
git clone https://github.com/Cyan4973/lz4.git && \
cd lz4/lib && \
make install
Alternativel installation method:
curl -O https://codeload.github.com/Cyan4973/lz4/tar.gz/r127
mv r127 lz4-r127.tar.gz
tar xvzf lz4-r127.tar.gz
cd lz4-r127/lib && \
make install
Signed-off-by: Pooya Shareghi <shareghi@gmail.com>
Yueh-Hsuan Chiang [Tue, 24 Mar 2015 19:14:09 +0000 (12:14 -0700)]
Merge pull request #545 from fyrz/RocksJava-Level-Compression
[RocksJava] Add compression per level to API