Cache Gateway Demo
Experience the power of distributed caching with our interactive demo
Lightning Fast
Experience response times in microseconds with our distributed caching system.
Response Time: 0.23ms
Cache Hit Ratio: 99.9%
Throughput: 1M req/s
Flexible Configuration
Customize cache settings to match your needs
{
"cacheConfig": {
"ttl": 3600,
"maxSize": "1GB",
"strategy": "LRU"
}
}
Enterprise Security
Secure your cache with advanced authentication options
{
"accessConfig": {
"authType": "API_KEY",
"apiKey": "****"
}
}
Simple API Integration
Create a Gateway Node
POST /api/gateway-nodes
{
"targetAddress": "https://api.example.com",
"cacheConfig": {
"ttl": 3600,
"maxSize": "1GB",
"strategy": "LRU"
},
"accessConfig": {
"authType": "API_KEY",
"apiKey": "your-secret-key"
}
}
Use Your Gateway
curl -X GET \
https://your-gateway.cachegateway.com/api \
-H "Authorization: Bearer your-api-key" \
-H "Cache-Control: max-age=3600"
// Response with cache status
{
"cache-status": "HIT",
"response-time": "0.23ms"
}