44s Documentation
Lock-free cloud infrastructure. 450× faster. Drop-in compatible.
Get started in minutes. All services use standard protocols — Redis, PostgreSQL, Kafka, S3. Your existing code works.
Quick Start
1. Get Your API Key
Sign up at 44s.io/pricing to get your API key. Keys start with 44s_.
2. Connect to Cache (Redis)
Our cache speaks Redis protocol. Use any Redis client:
# Using redis-cli
redis-cli -h api.44s.io -p 6379
> AUTH 44s_your_api_key
OK
> SET mykey "Hello, 44s!"
OK
> GET mykey
"Hello, 44s!"
3. Connect with Your Language
# Python
import redis
r = redis.Redis(host='api.44s.io', port=6379, password='44s_your_api_key')
r.set('foo', 'bar')
print(r.get('foo')) # b'bar'
// Node.js
const Redis = require('ioredis');
const redis = new Redis({
host: 'api.44s.io',
port: 6379,
password: '44s_your_api_key'
});
await redis.set('foo', 'bar');
console.log(await redis.get('foo')); // 'bar'
Authentication
All 44s services authenticate via API key. Include your key in one of these ways:
| Protocol | Method | Example |
|---|---|---|
| Redis | AUTH command |
AUTH 44s_your_key |
| PostgreSQL | Password field | psql -h api.44s.io -U _ -W |
| HTTP APIs | X-API-Key header |
curl -H "X-API-Key: 44s_..." |
| WebSocket | Query param | ws://api.44s.io?api_key=44s_... |
Rate Limits
| Tier | Requests/sec | Monthly Quota |
|---|---|---|
| Free | 1 | 100 |
| Starter | 1,000 | 1M |
| Pro | 10,000 | 10M |
| Founding | 100,000 | Unlimited |
Services Overview
8 production services, all lock-free, all blazing fast.
Cache 450× faster
Redis-compatible in-memory cache. Drop-in replacement.
Database 50× faster
PostgreSQL-compatible SQL database with MVCC.
Vector 30× faster
AI vector database for embeddings. Pinecone-compatible API.
Streaming 100× faster
Event streaming platform. Kafka-compatible concepts.
Graph 40× faster
Graph database for relationships. BFS, DFS, shortest path.
Serverless 40,000× cold start
Deploy and invoke functions. Near-zero cold start.
Gaming 100K+ players
Real-time game server. WebSocket + UDP. 10,000Hz tick rate.
Object Store S3-compatible
S3-compatible object storage for files and blobs.
Base URL
All services are hosted at:
api.44s.io
Each service runs on its own port. See individual docs for connection details.
Need Help?
Email us at zach@origin22.com