So in my dashboard scenario where I want to show groups and events, if I'm using Go, I'd probably want to use two separate go routines to make these calls, one for groups and one for events
go func() {
// hit spice for viewable groups
// hit db for group data
// <- put data in a result channel
}
go func() {
// hit spice for viewable events
// hit db for event data
// <- put data in a result channel
}
Something like that? Is that what people are doing?