Redis: NOSCRIPT No matching script. Please use EVAL.
EVALSHA runs a script the server has already cached by hash, and that cache is not persisted. A restart, a failover to a replica that never saw the script, or a SCRIPT FLUSH empties it, so a client that only ever sends the hash starts failing until it loads the body again.
Quick fix
Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.
# Is the hash actually known to this node
redis-cli SCRIPT EXISTS 6b1bf486c81ceb7edf3c093f4c48582e38c0e791
# Load it and get the hash back
redis-cli SCRIPT LOAD "$(cat mylock.lua)"
// Client libraries handle this for you: use the wrapper, not raw EVALSHA
// node-redis: client.eval / defineScript
// redis-py: script = r.register_script(src); script(keys=[...], args=[...])
// Lettuce: scriptingCommands with retry on NOSCRIPT
// Rolling your own: fall back once, then retry
try { await redis.evalsha(sha, keys, args); }
catch (e) { if (String(e).startsWith("NOSCRIPT")) await redis.eval(src, keys, args); else throw e; }
# In a cluster the script must be loaded on every node
redis-cli --cluster call 10.0.0.1:6379 SCRIPT LOAD "$(cat mylock.lua)"
How to diagnose Caching errors
Cache problems are rarely reported as cache problems. They arrive as a traffic spike that takes down the origin (a stampede after a mass eviction), users seeing old content after a deploy, or an inexplicable 403 from the CDN. The unifying diagnostic is to look at the cache status header on a real response before theorising about anything else.
If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.
- Read the cache status header on a live request:
curl -sI https://example.com | grep -i -E 'cache|age|x-cache|cf-cache-status'. HIT, MISS and BYPASS each point at a different root cause. - Check the
Ageheader against your intended TTL. AnAgelarger thanmax-agemeans something is serving stale content deliberately (stale-while-revalidate), often the desired behaviour, occasionally the bug. - For stampedes, add request coalescing or a short randomised TTL jitter rather than a longer TTL. Identical expiry times across many keys are what create the thundering herd.
- Use content-hashed filenames for static assets and
no-cachefor HTML. Almost every "users see the old version" incident traces back to a long TTL on an HTML document. - For CDN 403s, distinguish a CDN-generated response from an origin one by checking whether CDN-specific headers are present. An origin 403 has a completely different fix.
Tools worth reaching for
curl -sIvarnishlogCDN edge logsCache-Control validators
Authoritative references
Primary documentation for this error, worth reading before applying any fix in production.
Related Caching errors
- Browser serving stale cache after deploymentUsers see old content after a deployment because their browsers cached the previous version…
- Cache stampede / thundering herdMultiple processes simultaneously attempt to rebuild the same expired cache entry…
- CDN: High cache miss ratioThe CDN is not caching responses effectively. Most requests are hitting the origin server…
- CloudFront: 403 Access DeniedCloudFront cannot access the S3 origin, usually because the bucket policy or Origin Access…
- Memcached: SERVER_ERROR object too large for cacheThe item exceeded the maximum item size, one megabyte by default, so it was refused rather…
- Memcached: SERVER_ERROR out of memoryMemcached cannot allocate memory for new items. The memory limit has been reached and no…
- Redis: LOADING Redis is loading the dataset in memoryThe server is replaying its RDB or AOF file after a restart and refuses commands until it…
- Redis: MISCONF Redis is configured to save RDB snapshots but is unable to persistA background save failed, usually because the disk is full, the dump directory is not…
Browse other categories
- HTTP 494xx client errors, 5xx server errors, redirects, headers and protocol problems.
- JavaScript 42npm resolution, async pitfalls, hydration, memory limits and runtime type…
- Database 41Connections, deadlocks, constraints, replication and memory limits.
- AI 35Rate limits, context windows, GPU memory and model-serving failures.
- Network 35Refused connections, timeouts, resets, MTU problems and port exhaustion.
- Python 35Imports, virtual environments, encoding, concurrency and dependency conflicts.
- Kubernetes 34CrashLoopBackOff, ImagePullBackOff, OOMKilled, RBAC, scheduling and storage.
- Docker 27Daemon connectivity, disk space, image pulls, ports and architecture mismatches.
- System 26Disk space, systemd units, file descriptors, OOM killer and scheduled jobs.
- Cloud 25IAM permissions, quotas, service limits and credential failures.
- Security 25JWT validation, CSRF, OAuth grants, SELinux, SSH host keys and CSP.
- TLS 24Untrusted authorities, expiry, hostname mismatch, chains and cipher negotiation.
Something missing or wrong?
This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.