On Wed, Oct 17, 2012 at 2:15 AM, Gil Hildebrand <gilhildebr...@gmail.com> wrote:
> I couldn't figure that out, and wound up converting all my indexes to
> lowercase before creating them. Am sure there is a better solution though.
> On Friday, October 12, 2012 7:13:12 AM UTC-5, Sudhakar G wrote:
>> Hi,
>> Can anyone advise me on how to create case insensitive indexes creation
>> using BluePrints.
>> BTW, I am using Neo4J as the underlying graph.....
You can inject your own analyzers into the Neo4J indexing subsystem, but it's easier to pre-process the value(s) you want to index (convert them to a uniform case) in most situations. In fact, we actually use Lucene filters/readers to pre-process text we wish to index, and then pass those to the default analyzers that Neo4J uses.
> On Wed, Oct 17, 2012 at 2:15 AM, Gil Hildebrand <gilhil...@gmail.com<javascript:>> > wrote: > > I couldn't figure that out, and wound up converting all my indexes to > > lowercase before creating them. Am sure there is a better solution > though.
> > On Friday, October 12, 2012 7:13:12 AM UTC-5, Sudhakar G wrote:
> >> Hi,
> >> Can anyone advise me on how to create case insensitive indexes creation > >> using BluePrints.
> >> BTW, I am using Neo4J as the underlying graph.....