Functions

FUNCTION STATS

Return information about the function running engine.

Response

Objectrequired

Stats about the engines and functions.

Currently, LUA is the only supported engine.

Example
const stats = await redis.functions.stats()console.log(stats)// {//   engines: {//     LUA: {//       librariesCount: 3,//       functionsCount: 15//     }//   }// }
Loading search…