Module: Redis::Commands::Server
- Included in:
- Redis::Commands
- Defined in:
- sig/redis.rbs
Instance Method Summary collapse
- #bgrewriteaof ⇒ String
- #bgsave ⇒ String
- #client ⇒ String, Hash[untyped, untyped]
- #config ⇒ String, Hash[untyped, untyped]
- #dbsize ⇒ Integer
- #debug ⇒ Object
- #flushall ⇒ String
- #flushdb ⇒ String
- #info ⇒ Hash[String, String]
- #lastsave ⇒ Integer
- #monitor {|arg0| ... } ⇒ Object
- #save ⇒ String
- #shutdown ⇒ Object
- #slaveof ⇒ Object
- #slowlog ⇒ Array[String], ...
- #sync ⇒ Object
- #time ⇒ Array[Integer]
Instance Method Details
#bgrewriteaof ⇒ String
490 |
# File 'sig/redis.rbs', line 490
def bgrewriteaof: () -> String
|
#bgsave ⇒ String
492 |
# File 'sig/redis.rbs', line 492
def bgsave: () -> String
|
#client ⇒ String, Hash[untyped, untyped]
496 |
# File 'sig/redis.rbs', line 496
def client: ((String | Symbol) subcommand, *untyped args) -> (String | Hash[untyped, untyped])
|
#config ⇒ String, Hash[untyped, untyped]
494 |
# File 'sig/redis.rbs', line 494
def config: (Symbol action, *untyped args) -> (String | Hash[untyped, untyped])
|
#dbsize ⇒ Integer
498 |
# File 'sig/redis.rbs', line 498
def dbsize: () -> Integer
|
#debug ⇒ Object
522 |
# File 'sig/redis.rbs', line 522
def debug: (*untyped args) -> untyped
|
#flushall ⇒ String
500 |
# File 'sig/redis.rbs', line 500
def flushall: (?Hash[untyped, untyped] options) -> String
|
#flushdb ⇒ String
502 |
# File 'sig/redis.rbs', line 502
def flushdb: (?Hash[untyped, untyped] options) -> String
|
#info ⇒ Hash[String, String]
504 |
# File 'sig/redis.rbs', line 504
def info: (?(String | Symbol) cmd) -> Hash[String, String]
|
#lastsave ⇒ Integer
506 |
# File 'sig/redis.rbs', line 506
def lastsave: () -> Integer
|
#monitor {|arg0| ... } ⇒ Object
508 |
# File 'sig/redis.rbs', line 508
def monitor: () { (untyped) -> untyped } -> untyped
|
#save ⇒ String
510 |
# File 'sig/redis.rbs', line 510
def save: () -> String
|
#shutdown ⇒ Object
512 |
# File 'sig/redis.rbs', line 512
def shutdown: () -> untyped
|
#slaveof ⇒ Object
514 |
# File 'sig/redis.rbs', line 514
def slaveof: (untyped host, untyped port) -> untyped
|
#slowlog ⇒ Array[String], ...
516 |
# File 'sig/redis.rbs', line 516
def slowlog: (String subcommand, ?Integer length) -> (Array[String] | Integer | String)
|
#sync ⇒ Object
518 |
# File 'sig/redis.rbs', line 518
def sync: () -> untyped
|
#time ⇒ Array[Integer]
520 |
# File 'sig/redis.rbs', line 520
def time: () -> Array[Integer]
|