Redis.Consumer_infoThe return value for the XINFO CONSUMERS command https://redis.io/commands/xinfo-consumers/
type t = {name : Consumer.t;pending : int;idle : Core.Time_ns.Span.t;inactive : Core.Time_ns.Span.t option;inactive was added in 7.2.x
}val sexp_of_t : t -> Sexplib0.Sexp.tval of_resp3 : Resp3.t -> t Core.Or_error.tval last_successful_interaction : t -> Core.Time_ns.Span.tBefore Redis 7.2.0, idle used to denote the time passed since last successful interaction. In 7.2.0, inactive was added and idle was changed to denote the time passed since last attempted interaction.
https://redis.io/docs/latest/commands/xinfo-consumers/
val last_attempted_interaction : t -> Core.Time_ns.Span.t option