I have Lua script which I'm considering migrating to Redis Cluster
Should I specify full key names when call eval
?
Or can I get away just by specifying hashtags?
For example, I wish to pass only {UNIQUE_HASH_TAG}
instead of {UNIQUE_HASH_TAG}/key1
, {UNIQUE_HASH_TAG}/key2
... etc
I have lots of keys, and logic is pretty complicated - sometimes I end up generating key names dynamically but within the same hash tag.
Would I violate some specifications by passing just hash tags instead of key names?