Skip to content

Instantly share code, notes, and snippets.

@norus
Created October 22, 2020 14:14
Show Gist options
  • Select an option

  • Save norus/af5fdf986941026e19b00aac6caa3c76 to your computer and use it in GitHub Desktop.

Select an option

Save norus/af5fdf986941026e19b00aac6caa3c76 to your computer and use it in GitHub Desktop.
Redis protocol generation
def redis_protocol(cmd):
proto = "*%d\r\n" % len(cmd.split(' '))
for arg in cmd.split(' '):
proto += "$%d\r\n%s\r\n" % (len(arg), arg)
return proto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment