qbus query tester



First thing that happens is that qbus normalizes the input. This includes trimming off slashes and converting double slashes into singles.

With the query normalized qbus determines the static portion of the query. This will be used as namespacing to optimize listener lookup.

If it's a static query qbus will optimize matching by using string comparison instead of RegExp. Dynamic queries has to be interpreted before we continue to the next step.

RegExp

Dynamic queries will be converted to RegExp and static queries will remain strings.

Type a path to see if it matches the query above.