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.3.0
pts/redis-1.3.0
- 09 November 2020 -
Update against Redis 6.0.9 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://download.redis.io/releases/redis-6.0.9.tar.gz</URL> <MD5>eef6a4345f2bcb8432bfa7f4db54e959</MD5> <SHA256>dc2bdcf81c620e9f09cfd12e85d3bc631c897b2db7a55218fd8a65eaa37f86dd</SHA256> <FileName>redis-6.0.9.tar.gz</FileName> <FileSize>2261418</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xzf redis-6.0.9.tar.gz cd ~/redis-6.0.9/deps make hiredis jemalloc linenoise lua cd ~/redis-6.0.9 make MALLOC=libc -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh cd ~/redis-6.0.9 ./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 v10.0.1--> <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 v10.0.1--> <PhoronixTestSuite> <TestInformation> <Title>Redis</Title> <AppVersion>6.0.9</AppVersion> <Description>Redis is an open-source data structure server.</Description> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.3.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>