mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00:00
17 lines
341 B
C#
17 lines
341 B
C#
namespace IP2Region.Net.XDB;
|
|
|
|
public enum CachePolicy
|
|
{
|
|
/// <summary>
|
|
/// no cache
|
|
/// </summary>
|
|
File,
|
|
/// <summary>
|
|
/// cache vector index , reduce the number of IO operations
|
|
/// </summary>
|
|
VectorIndex,
|
|
/// <summary>
|
|
/// default cache policy , cache whole xdb file
|
|
/// </summary>
|
|
Content
|
|
} |