Latest web development tutorials

Redis Script Flush command

Redis script

Redis Script Flush command is used to clear all the Lua script cache.

grammar

redis Script Flush basic command syntax is as follows:

redis 127.0.0.1:6379> SCRIPT FLUSH

Available versions

> = 2.6.0

return value

Always returns OK

Examples

redis 127.0.0.1:6379> SCRIPT FLUSH
OK

Redis script