_ctx.getConfiguration().getRemoteCommitEventManager()
.fireLocalStaleNotification(oid);
}
public StoreQuery newQuery(String language) {
StoreQuery q = super.newQuery(language);
// if the query can't be parsed or it's using a non-parsed language
// (one for which there is no ExpressionParser), we can't cache it.
if (q == null || QueryLanguages.parserForLanguage(language) == null)
return q;