github.com/altipla-consulting/ravendb-go-client@v0.1.3/index_type.go (about)

     1  package ravendb
     2  
     3  type IndexType = string
     4  
     5  const (
     6  	IndexTypeNone          = "None"
     7  	IndexTypeAutoMap       = "AutoMap"
     8  	IndexTypeAutoMapReduce = "AutoMapReduce"
     9  	IndexTypeMap           = "Map"
    10  	IndexTypeMapReduce     = "MapReduce"
    11  	IndexTypeFaulty        = "Faulty"
    12  )