Re: Geode Module Configuration

2017-08-09 Thread Jacob Barrett
Yes there is an extension point on cache. Just follow the lucene as example but put your XML elements inside cache element. Sent from my iPhone > On Aug 9, 2017, at 4:38 PM, Dan Smith wrote: > > There is no global configuration for lucene right now. > > Adding extensions to the cache.xml *loo

Re: Geode Module Configuration

2017-08-09 Thread Dan Smith
There is no global configuration for lucene right now. Adding extensions to the cache.xml *looks* like it should be possible. InternalCache implements Extensible which means that theoretically you should be able to call InternalCache.getExtensionPoint.addExtension(yourXmlParser). That whole Extens

Re: Geode Module Configuration

2017-08-09 Thread Kirk Lund
Not yet. I'd like to introduce org.apache.geode.config package and start ripping out all of the configuration from DistributedSystem and Cache and move them to something (a Configuration class?) that lives in org.apache.geode.config. Would this live in a geode-config module...? I don't think anyone