Hi!
I need to store a sorted set of keywords. Does it make sense to store that in datahike? And what would be the idiomatic way to do so? I expect users to rarely add new keywords but more often to change the order. At the moment I am leaning towards putting the sorted set into a separate file next to the db-file.
@magra If you want to control the sorting order then probably the easiest thing is to store the integer indices with each element. You can then sort by them in your query results. How do you expect to retrieve the set?