NeXuS

Cache Service API

The Cache Service provides a distributed caching layer using Redis and Memcached. It runs on port 7002 at https://cache.sebhosting.com.

Endpoints

GET /health

{
  "service": "cache-service",
  "status": "healthy",
  "port": 7002,
  "uptime": 86400,
  "timestamp": "2026-02-14T06:19:07.261Z"
}

GET /status

{
  "service": "cache-service",
  "version": "1.0.0",
  "description": "Cache Management Service",
  "status": "operational",
  "timestamp": "2026-02-14T06:19:07.261Z"
}

Architecture

Redis Configuration

redis-server
  --requirepass ${REDIS_PASSWORD}
  --bind 0.0.0.0
  --protected-mode yes
  --maxmemory 256mb
  --maxmemory-policy allkeys-lru