Differences between revisions 2 and 3
Revision 2 as of 2022-11-07 18:40:24
Size: 417
Editor: PieterSmit
Comment:
Revision 3 as of 2022-11-07 18:40:50
Size: 419
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
 * [[https://architecturenotes.co/redis/|Architecture explained  * [[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)