Skip to content

Instantly share code, notes, and snippets.

@charliek
Created October 22, 2011 05:14
Show Gist options
  • Save charliek/1305664 to your computer and use it in GitHub Desktop.
Save charliek/1305664 to your computer and use it in GitHub Desktop.
lookup a redis key
#!/usr/bin/env groovy
@Grapes([
@Grab('redis.clients:jedis:1.5.1'),
@GrabConfig(systemClassLoader=true)
])
import redis.clients.jedis.*
Jedis jedis = new Jedis("localhost")
println jedis.get(args[0])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment