@(paramsForm:Form[RedisParameters])(implicit flash:Flash) @import helper.twitterBootstrap._ @main("Redxplay") {
@helper.form(action = routes.Application.startSession) { @helper.inputText(paramsForm("hostname")) @helper.inputText(paramsForm("port")) @helper.inputText(paramsForm("auth")) }

Try with Heroku/RedisToGo?

Create an instance on Redistogo, this takes 2 mn and gives you a redis URL like : redis://redistogo:d01bc6e77a93114697571aeb9a81744f@@tetra.redistogo.com:9907/.

  • Enter tetra.redistogo.com as the hostname
  • Enter 9907 as the TCP port
  • Set d01bc6e77a93114697571aeb9a81744f as the AUTH

Don't have Redis installed?

Read this quick start guide if you want to install Redis from the source.

You can also install Redis with Homebrew, type brew install redis on Mac

For Linix, install Redis with apt-get install redis.

}