<!-- If you want your bug report * to be more difficult to process and understand * to have many unnecessary follow-up questions * to take longer to fix then necessary don’t use this issue template. If you want your bug report * to be concise and easy to understand * to not have any (or very few) follow-up questions * to take faster to fix use this issue template. Thank you. --> ### Short description of the issue WireCache: get() $expire selector doesn't support OR groups ### Expected behavior It should support OR groups ### Actual behavior Cache doesn't get refreshed ever ### Steps to reproduce the issue <!-- Provide an unambiguous set of steps to reproduce the issue. --> 1. Something like `return wire('cache')->get('message_dates_'.$u->id, '(id='.$u->id.'), (template=date)', function() use($u, $include_past) {` 2. Edit user page ($u->id) or any page with date template 3. Note that cache isn't refreshed As a workaround, I am getting the IDs of all the date template pages and adding them to the id selector, but I don't think we should have to do that.