I want to publish a sale of a product. I just wanted to publish once to a topic like sale/124 where each number represents an id of a store. Then each queue connected to that store only had to subscribe to a topic like sale/ 2 for example for store with id 2. The thing this is not possible as solace only supports wildcards in topics for prefixes. So like 2* would match 234 or just 2, but in the topic * 2* the first * at least would be considered the literal value.
A solution would be to have a level in the topic for each store:
sale/id1/id2/id3
And only had to subscribe to sale//id2/ for store 2
The thing is only 250 can be used for topic name and only 128 topic levels.
A easy solution would be to use selectors, but they are not recommended by solace. Is this one of the situation where you should use them?
What do you think is the best path so I can achieve my goal?