Re: analyzer for _text_ field

2016-07-16 Thread Steve Rowe
Waldyr, I recommend you start reading the Solr Reference Guide here: . In the following sections, there are many examples of schema.xml configuration of field types and fields. In general: what y

Re: analyzer for _text_ field

2016-07-16 Thread Waldyr Neto
in other way, i'm loking for how i define the analyzer for the content field :) wich is maped to _text_ field _text_ On Sat, Jul 16, 2016 at 2:38 PM, Waldyr Neto wrote: > yeap, > > i'm loking for a way to specify in schema.xml theh analyzer for the _text_ > field > > On Sat, Jul 16, 2016 at 12:

Re: analyzer for _text_ field

2016-07-16 Thread Waldyr Neto
yeap, i'm loking for a way to specify in schema.xml theh analyzer for the _text_ field On Sat, Jul 16, 2016 at 12:22 PM, Steve Rowe wrote: > Waldyr, > > I don’t understand your first question - are you asking how to change the > schema without using the Schema API? > > About phonetic matching:

Re: analyzer for _text_ field

2016-07-16 Thread Steve Rowe
Waldyr, I don’t understand your first question - are you asking how to change the schema without using the Schema API? About phonetic matching: there are several different phonetic token filters provided with Solr - see . --

Re: analyzer for _text_ field

2016-07-16 Thread Waldyr Neto
tks, it works :) but do you know how i could do this, thange the _text_ analyzer using schemas? maybe in any point i could change the default analyzer. what i really need is to use any analyzer that work with phonetic search in the content of my files; On Fri, Jul 15, 2016 at 10:11 PM, Waldyr Net

Re: analyzer for _text_ field

2016-07-15 Thread Waldyr Neto
tks a lot, i'll try soon and give u a feed back :) On Fri, Jul 15, 2016 at 4:07 PM, David Santamauro < david.santama...@gmail.com> wrote: > > The opening and closing single quotes don't match > > -data-binary '{ ... }’ > > it should be: > > -data-binary '{ ... }' > > > > On 07/15/2016 02:59 PM, S

Re: analyzer for _text_ field

2016-07-15 Thread David Santamauro
The opening and closing single quotes don't match -data-binary '{ ... }’ it should be: -data-binary '{ ... }' On 07/15/2016 02:59 PM, Steve Rowe wrote: Waldyr, maybe it got mangled by my email client or yours? Here’s the same command:

Re: analyzer for _text_ field

2016-07-15 Thread Steve Rowe
Waldyr, maybe it got mangled by my email client or yours? Here’s the same command: -- Steve www.lucidworks.com > On Jul 15, 2016, at 2:16 PM, Waldyr Neto wrote: > > Hy Steves, tks for the help > unfortunately i'm making som

Re: analyzer for _text_ field

2016-07-15 Thread Waldyr Neto
Hy Steves, tks for the help unfortunately i'm making some mistake when i try to run >> curl -X POST -H 'Content-type: application/json’ \ http://localhost:8983/solr/gettingstarted/schema --data-binary '{"add-field-type": { "name": "my_new_field_type", "class": "solr.TextField","analyzer": {"charFi

Re: analyzer for _text_ field

2016-07-15 Thread Steve Rowe
Hi Waldyr, An example of changing the _text_ analyzer by first creating a new field type, and then changing the _text_ field to use the new field type (after starting Solr 6.1 with “bin/solr start -e schemaless”): - PROMPT$ curl -X POST -H 'Content-type: application/json’ \ http://local

analyzer for _text_ field

2016-07-15 Thread Waldyr Neto
Hy, How can i configure the analyzer for the _text_ field?