mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 09:30:45 +00:00
42dc29619dfe8794487b7fa81f54c90f49016de8
"This series deals with copies and moves of mutation. The former are dealt with by adding std::move() and missing 'mutable' (in case of lambdas). The latter are improved by storing mutation_partition externally thus removing the need for moving mutation_partition each time mutation is moved. Storing mutation_partition externally is obviously trading the cost of move constructor for the cost of allocation which shows in perf_mutation results since mutations aren't moved in that test. perf_mutation (-c 1): before: 3289520.06 tps after: 3183023.37 tps diff: -3.24% perf_simple_query (read): before: 526954.05 tps after: 577225.16 tps diff +9.54% perf_simple_query (write): before: 731832.70 tps after: 734923.60 tps diff: +0.42% Fixes #150 (well, not completely)."
#Urchin
##Building Urchin
In addition to required packages by Seastar, the following packages are required by Urchin.
Submodules
Urchin uses submodules, so make sure you pull the submodules first by doing:
git submodule init
git submodule update --recursive
Building urchin on Fedora
Installing required packages:
sudo yum install yaml-cpp-devel lz4-devel zlib-devel snappy-devel jsoncpp-devel thrift-devel antlr3-tool antlr3-C++-devel libasan libubsan
Building urchin on Ubuntu 14.04
Installing required packages:
sudo apt-get install libyaml-cpp-dev liblz4-dev zlib1g-dev libsnappy-dev libjsoncpp-dev
Description
Languages
C++
72.7%
Python
26%
CMake
0.4%
GAP
0.3%
Shell
0.3%