C# (CSharp) Lucene.Net.Spatial SpatialStrategy - 20 examples found. These are the top rated real world C# (CSharp) examples of Lucene.Net.Spatial.SpatialStrategy extracted from open source projects. You can rate examples to help us improve the quality of examples.
The SpatialStrategy encapsulates an approach to indexing and searching based on shapes. Different implementations will support different features. A strategy should document these common elements: Can it index more than one shape per field?What types of shapes can be indexed?What types of query shapes can be used?What types of query operations are supported? This might vary per shape.Does it use the FieldCache, or some other type of cache? When? If a strategy only supports certain shapes at index or query time, then in general it will throw an exception if given an incompatible one. It will not be coerced into compatibility. Note that a SpatialStrategy is not involved with the Lucene stored field values of shapes, which is immaterial to indexing and search. Thread-safe. @lucene.experimental