Goliath looks interesting, and I'm looking to use it for a small part of a mobile API that will be hit often (so it needs to be
fast).
Once a user creates a session via the API (username/password), he is handed back a token, and uses that for subsequent requests in the Rails API.
I'm using Devise for authentication on the Rails side, so the auth token is stored in the DB. I'm looking to avoid the DB altogether for this part of the API (store the data in Redis instead, probably), which complicates things a bit. I'm open to other options, though.
I know this is vague, but does anyone have any experience with sharing this auth scheme with Goliath? Pointing me in the right direction, perhaps?