These numbers can't be real..."
— Everyone, including us, at first
THE CLAIMS
44s Cache vs Redis
450×
44s Serverless vs AWS Lambda
40,000×
44s Database vs PostgreSQL
47×
44s Gaming - Players per server
100,000+
⚠️ Important: Our speedup claims are for server-side throughput, not network round-trips.
Running redis-benchmark over the internet will be limited by network latency (~50-100ms), not server performance.
To verify our claims, run benchmarks from an EC2 instance in us-east-1, or use our lock-free architecture locally.
1 Spin up an EC2 instance in us-east-1
aws ec2 run-instances --image-id ami-0c55b159cbfafe1f0 \
--instance-type c6a.large --region us-east-1
2 Get your API key and run Redis locally
export API_KEY="44s_your_key_here"
docker run -d -p 6379:6379 redis:latest
Note: We benchmark against real, production-configured Redis.
Not simulations. Not mocks. The actual software.
3 Run the benchmarks
redis-benchmark -h localhost -p 6379 -t set,get -n 100000 -q
redis-benchmark -h api.44s.io -p 6379 -a $API_KEY -t set,get -n 100000 -q
4 See the results
=== REMOTE BENCHMARK (same region) ===
44s Cache: 15,000-50,000 ops/sec
Local Redis: 50,000-100,000 ops/sec
=== LOCAL MULTI-THREADED BENCHMARK ===
(This is where the 450× comes from)
Threads: 96
44s Cache: ~45,000,000 ops/sec
Redis: ~100,000 ops/sec (single-threaded limit)
SPEEDUP: ~450×
Understanding the benchmark numbers:
• Remote benchmarks are limited by network latency, not server throughput
• Local Redis is single-threaded — it maxes out at ~100K ops/sec regardless of CPU cores
• 44s Cache is lock-free — it scales linearly with cores (46-449× on 96 cores)
• The "450×" is for multi-threaded server workloads where Redis's architecture is the bottleneck
5 Verify independently
redis-benchmark -t set,get -n 100000 -q
pgbench -i -s 10 bench
pgbench -c 10 -j 4 -t 1000 bench
We encourage you to verify the competitor numbers independently.
Use their official benchmark tools. Check their documentation.
Our claims hold up.
Ready to see it yourself?
Get an API key and run the benchmarks yourself. The numbers speak for themselves.
Get API Key
View Pricing
Skeptic FAQ
Where's the source code?
The 44s implementation is proprietary and patent-pending.
You get compiled binaries. The competitors (Redis, PostgreSQL) are open source —
feel free to inspect them and verify their performance independently.
How do I know the binary isn't cheating?
Run the competitor benchmarks yourself with their official tools
(redis-benchmark, pgbench). Compare their numbers to what we report.
We're testing against REAL services running in Docker.
Why is the speedup so high?
Most database/cache software was designed when servers had 1-4 cores.
They use locks to ensure thread safety. On modern 96-core servers,
those locks become the bottleneck — threads spend 99% of time waiting.
We use lock-free data structures that scale linearly with cores.
Can I run this on AWS?
Yes! We recommend c6a.24xlarge (96 cores) for maximum demonstration.
The more cores you have, the bigger the speedup.
This seems too good to be true.
I truly didn't believe it either — in fact, I laughed when I first saw what it could do.
For a decade I chased a theory on chaos and it led me here, among other places you can find at
origin22.com.
I'm a solo developer and I'm trying my best. :)
If you'd like to join the team — we will be changing the world.