Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Redis 1.2.0
pts/redis-1.2.0
- 23 September 2019 -
Update against upstream Redis 5.0.5
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.0.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://download.redis.io/releases/redis-5.0.5.tar.gz</URL> <MD5>2d2c8142baf72e6543174fc7beccaaa1</MD5> <SHA256>2139009799d21d8ff94fc40b7f36ac46699b9e1254086299f8d3b223ca54a375</SHA256> <FileName>redis-5.0.5.tar.gz</FileName> <FileSize>1975750</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xzf redis-5.0.5.tar.gz cd ~/redis-5.0.5/deps make hiredis jemalloc linenoise lua cd ~/redis-5.0.5 make MALLOC=libc -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh cd ~/redis-5.0.5/ ./src/redis-server & REDIS_SERVER_PID=\$! sleep 10 ./src/redis-benchmark \$@ > \$LOG_FILE kill \$REDIS_SERVER_PID sed \"s/\\\"/ /g\" -i \$LOG_FILE" > redis chmod +x redis
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.0.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate> LPUSH , #_RESULT_#</OutputTemplate> <LineHint>,</LineHint> <ResultScale>Requests Per Second</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.0.0--> <PhoronixTestSuite> <TestInformation> <Title>Redis</Title> <AppVersion>5.0.5</AppVersion> <Description>Redis is an open-source data structure server.</Description> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.2.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>52</EnvironmentSize> <ProjectURL>http://redis.io/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>-n 1000000 -P 32 -q -c 50 --csv</Arguments> </Default> <Option> <DisplayName>Test</DisplayName> <Identifier>test</Identifier> <ArgumentPrefix>-t </ArgumentPrefix> <Menu> <Entry> <Name>SET</Name> <Value>set</Value> </Entry> <Entry> <Name>GET</Name> <Value>get</Value> </Entry> <Entry> <Name>LPUSH</Name> <Value>lpush</Value> </Entry> <Entry> <Name>LPOP</Name> <Value>lpop</Value> </Entry> <Entry> <Name>SADD</Name> <Value>sadd</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>