namespace IP2Region.Net.XDB;
public enum CachePolicy
{
///
/// no cache , not thread safe!
///
File,
///
/// cache vector index , reduce the number of IO operations , not thread safe!
///
VectorIndex,
///
/// default cache policy , cache whole xdb file , thread safe
///
Content
}