gobwas/glob

Use in a pubsub lib?

nkev opened this issue · 1 comments

nkev commented

Thanks for sharing this. I'm relatively new to Go, but I would like to try my hand at a simple pubsub library that uses your glob package. I'm thinking, each subscriber instance would store a compiled Glob containing the list of its subscriptions, like this:

// Subscriber glob with pattern-alternatives list 
Subscriber.Subscriptions = glob.MustCompile("{core.*,plugins.categories.*}")

Does that sound right to you?

Hi @nkev,
Yes, this sounds totally right for me =)