We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type FavoritePlaylistId struct { UserId string PlaylistId string } type FavoritePlaylistEntity struct { Id FavoritePlaylistId `storm:"id"` UpdateTs int64 `storm:"index"` UserId string `storm:"index"` PlaylistId string `storm:"index"` }
Steps to reproduce:
I think there is a pb when you close and reopen the database. Don't know if it's a bbolt issue or a storm issue.
Found a workaround replacing:
Id FavoritePlaylistId `storm:"id"`
With
Id string `storm:"id"`
And calculate Id with concatenation (Id= UserId+':'+PlaylistId)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce:
I think there is a pb when you close and reopen the database. Don't know if it's a bbolt issue or a storm issue.
Found a workaround replacing:
With
And calculate Id with concatenation (Id= UserId+':'+PlaylistId)
The text was updated successfully, but these errors were encountered: