Spedo
SPEDO ENGINE
v0.69.0 PREVIEW
INTERACTIVE DEMO 60-Second Onboarding Walkthrough
← Return to Home
1. Get Free Key
2. Docker Run
3. Pip Install
4. Python Script (app.py)
5. SET/GET Output (0.8µs)
🌐 SPEDO PORTAL — FREE DEVELOPER KEY (1-MONTH)
● INSTANT ISSUANCE
DEV ACCOUNT [email protected]
Free renewable trial key with full SIMD & in-memory acceleration.
zsh — Terminal — 80x24
spedo-container
🐍 app.py — Visual Studio Code
Python 3.11
1from spedo_client import SpedoClient
2
3# 1. Connect to local Spedo runtime
4client = SpedoClient(
5 host="127.0.0.1",
6 port=6380,
7 license_key="spedo_lic_dev_trial_98bf3a721c0e"
8)
9
10# 2. Sub-microsecond In-Memory SET & GET
11client.set("user:101", '{"name": "Alex", "plan": "pro", "speed": "<1us"}')
12user = client.get("user:101")
13print(f"Retrieved in 0.8µs: {user}")