MSET key value [key value …]

    Time complexity: O(N) where N is the number of keys to set.

    is atomic, so all given keys are set at once. It is not possible for clients to see that some of the keys were updated while others are unchanged.

    *Examples

    redis> MSET key1 "Hello" key2 "World"

    redis> GET key2

    redis>