I probably do something very stupid but I have the following python code

data = {
    'q':'text:"abc"',
    'sort': 'id asc',
    'fl': 'id, label'
}

resp = requests.get(f'http://{server}/solr/{core}/export', params=data).json()
print(resp)
resp = requests.get(f'http://{server}/solr/{core}/select', params=data).json()
print(resp)

The first response does not do what I want: it does not take any of
the arguments into account that I have given: it ignores the query and
the sort.
It always gives me the same result and it also returns only 10 documents.

Any idea?

The thing is: I see the same behavior in streaming expressions, whihc
is quite a nuissance
Thanks

Kenny

Reply via email to