tks a lot, i'll try soon and give u a feed back :)
On Fri, Jul 15, 2016 at 4:07 PM, David Santamauro <
[email protected]> wrote:
>
> 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:
>>
>> <https://gist.github.com/sarowe/db2fcd168eb77d7278f716ac75bfb9e9>
>>
>> --
>> Steve
>> www.lucidworks.com
>>
>> On Jul 15, 2016, at 2:16 PM, Waldyr Neto <[email protected]> wrote:
>>>
>>> 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": {"charFilters": [{"class":
>>> "solr.HTMLStripCharFilterFactory"}], "tokenizer": {"class":
>>> "solr.StandardTokenizerFactory"},"filters":[{"class":
>>> "solr.WordDelimiterFilterFactory"}, {"class":
>>> "solr.LowerCaseFilterFactory"}]}},"replace-field": { "name":
>>> "_text_","type": "my_new_field_type", "multiValued": "true","indexed":
>>> "true","stored": "false"}}’
>>>
>>> i receave the folow error msg from curl program
>>> :
>>>
>>> curl: (3) [globbing] unmatched brace in column 1
>>>
>>> curl: (6) Could not resolve host: name
>>>
>>> curl: (6) Could not resolve host: my_new_field_type,
>>>
>>> curl: (6) Could not resolve host: class
>>>
>>> curl: (6) Could not resolve host: solr.TextField,analyzer
>>>
>>> curl: (3) [globbing] unmatched brace in column 1
>>>
>>> curl: (3) [globbing] bad range specification in column 2
>>>
>>> curl: (3) [globbing] unmatched close brace/bracket in column 32
>>>
>>> curl: (6) Could not resolve host: tokenizer
>>>
>>> curl: (3) [globbing] unmatched brace in column 1
>>>
>>> curl: (3) [globbing] unmatched close brace/bracket in column 30
>>>
>>> curl: (3) [globbing] unmatched close brace/bracket in column 32
>>>
>>> curl: (3) [globbing] unmatched brace in column 1
>>>
>>> curl: (3) [globbing] unmatched close brace/bracket in column 28
>>>
>>> curl: (3) [globbing] unmatched brace in column 1
>>>
>>> curl: (6) Could not resolve host: name
>>>
>>> curl: (6) Could not resolve host: _text_,type
>>>
>>> curl: (6) Could not resolve host: my_new_field_type,
>>>
>>> curl: (6) Could not resolve host: multiValued
>>>
>>> curl: (6) Could not resolve host: true,indexed
>>>
>>> curl: (6) Could not resolve host: true,stored
>>>
>>> curl: (3) [globbing] unmatched close brace/bracket in column 6
>>>
>>> cvs1:~ vvisionphp1$
>>>
>>> On Fri, Jul 15, 2016 at 2:45 PM, Steve Rowe <[email protected]> wrote:
>>>
>>> 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://localhost:8983/solr/gettingstarted/schema --data-binary '{
>>>> "add-field-type": {
>>>> "name": "my_new_field_type",
>>>> "class": "solr.TextField",
>>>> "analyzer": {
>>>> "charFilters": [{
>>>> "class": "solr.HTMLStripCharFilterFactory"
>>>> }],
>>>> "tokenizer": {
>>>> "class": "solr.StandardTokenizerFactory"
>>>> },
>>>> "filters":[{
>>>> "class": "solr.WordDelimiterFilterFactory"
>>>> }, {
>>>> "class": "solr.LowerCaseFilterFactory"
>>>> }]}},
>>>> "replace-field": {
>>>> "name": "_text_",
>>>> "type": "my_new_field_type",
>>>> "multiValued": "true",
>>>> "indexed": "true",
>>>> "stored": "false"
>>>> }}’
>>>> -----
>>>>
>>>> PROMPT$ curl
>>>> http://localhost:8983/solr/gettingstarted/schema/fields/_text_
>>>>
>>>> -----
>>>> {
>>>> "responseHeader”:{ […] },
>>>> "field":{
>>>> "name":"_text_",
>>>> "type":"my_new_field_type",
>>>> "multiValued":true,
>>>> "indexed":true,
>>>> "stored":false}}
>>>> -----
>>>>
>>>> --
>>>> Steve
>>>> www.lucidworks.com
>>>>
>>>> On Jul 15, 2016, at 12:54 PM, Waldyr Neto <[email protected]> wrote:
>>>>>
>>>>> Hy, How can i configure the analyzer for the _text_ field?
>>>>>
>>>>
>>>>
>>>>
>>