Differences between revisions 1 and 2
Revision 1 as of 2020-01-22 03:26:27
Size: 352
Editor: PieterSmit
Comment:
Revision 2 as of 2022-11-07 18:40:24
Size: 417
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
 * [[https://architecturenotes.co/redis/|Architecture explained

Redis high performance in memory kv store

Examples $ redis-cli

  • Open cli

    $ redis-cli
    127.0.0.1:6379>
  • Login if redis is started with password

    127.0.0.1:6379> AUTH <pwd>
    OK
  • Send msg to a channel

    127.0.0.1:6379> PUBLISH ChannelName Hi
    (integer) 1

Linux/Redis (last edited 2023-04-16 00:06:11 by PieterSmit)