Response
Stats about the engines and functions.
Currently,
LUA is the only supported engine.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
const stats = await redis.functions.stats()
console.log(stats)
// {
// engines: {
// LUA: {
// librariesCount: 3,
// functionsCount: 15
// }
// }
// }
Return information about the function running engine.
const stats = await redis.functions.stats()
console.log(stats)
// {
// engines: {
// LUA: {
// librariesCount: 3,
// functionsCount: 15
// }
// }
// }
Was this page helpful?