Spring Data GemFire DiskStore
问题 I need to persist the data in a Region to disk using Spring Data GemFire. Using the config below ( Locator and Server are started using Gfsh ): @EnablePdx @ClientCacheApplication @EnableDiskStore(name = "disk_store") @EnableClusterConfiguration(useHttp = true) @EnableEntityDefinedRegions(basePackages = "xxx.entity") @EnableGemfireRepositories(basePackages = "xxx.repository") public class GeodeClientConfiguration { } The config is below: spring.data.gemfire.disk.store.name=disk_store spring