Currently our redis queue entries are of the form {team_id}-{attack_id}. This has worked, but it's pretty inflexible, and that's going to cause some problems for #103 in particular. Rather than the custom encoding/decoding logic we have, we should replace this with something extensible. JSON would be an easy possibility:
{
"team_id": 1,
"attack_id": 1,
"potential_extra_data": "goes_here",
...
}