Skip to content

Case insensitve index in Titan ("exact" match) #820

@okram

Description

@okram

Certain fields want to retain the original String provided by the client, but still be able to search on any cased permutation of that String. However, they don't want the expense of ElasticSearch when this can probably be easily provided by Titan exact match where the indexing is into a toLowerCase() representation of the String.

gremlin> g.addVertex('email','[email protected]')
==>v[0]
gremlin> g.V().has('email','[email protected]')
==>v[0]
gremlin> g.V().has('email','[email protected]')
gremlin>

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions