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.0.0
pts/redis-1.0.0
- 03 June 2015 -
Initial commit of a redis benchmark!
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v5.8.0m5 (Belev)--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://download.redis.io/releases/redis-3.0.1.tar.gz</URL> <MD5>dd2bf1f65d75ed518313158086d4219b</MD5> <SHA256>0e21be5d7c5e6ab6adcbed257619897db59be9e1ded7ef6fd1582d0cdb5e5bb7</SHA256> <FileSize>1358190</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xzf redis-3.0.1.tar.gz cd ~/redis-3.0.1/deps make hiredis jemalloc linenoise lua cd ~/redis-3.0.1 make -j $NUM_CPU_JOBS echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh cd ~/redis-3.0.1/ ./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 v5.8.0m5 (Belev)--> <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 v5.8.0m5 (Belev)--> <PhoronixTestSuite> <TestInformation> <Title>Redis</Title> <AppVersion>3.0.1</AppVersion> <Description>Redis is an open-source data structure server.</Description> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.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> <DefaultEntry>0</DefaultEntry> <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>