public HazelcastQueryResultsRegion(final HazelcastInstance instance, final String name, final Properties props) {
// Note: The HazelcastInstance _must_ be passed down here. Otherwise query caches
// cannot be configured and will always use defaults. However, even though we're
// passing the HazelcastInstance, we don't want to use an ITopic for invalidation
// because the timestamps cache can take care of outdated queries
super(instance, name, props, new LocalRegionCache(name, instance, null, false));
}