Hi Markus,
thank you a lot for your response, that helps us very much.
We will try out the approach of separating the cores by topic only.
Kind Regards,
Florian
-Original Message-
From: Markus Jelsma
Sent: Mittwoch, 24. Februar 2021 12:27
To: solr-user@lucene.apache.org
Subject: Re:
Hi,
I want to match and score on a sorted DocList.
The use case is something like this
- Cache sorted results (with scores) of certain queries in the
queryCache (This is a DocList)
- New queries are superset of these cached queries and have dynamic
scoring clauses
- At runtime, I
Hi There,
I am trying to create a rule based authorization for two types of user.
Role : Access
-
power-user : Everything except data change in collections/cores
ui-user : UI access to view all data. But no edit access except data change in
collections/cores
How to implement thi
Hi,
I am first time user of the apache Solr, and i have brought up the Solr as
docker container , and i am unable to install/enable someplugins
(authentication,authorization etc)..
Could you please help. how to add these plug ins to solr which is running
as docker container.
Thanks
Anil
Hey Anil,
If you want to execute anything before Solr starts, you can do the
following: -
mkdir initdb; echo "echo hi" > initdb/hi.sh
docker run -v $PWD/initdb:/docker-entrypoint-initdb.d solr
Using the above, you can have any script executed before Solr starts.
Source:
https://github.com/docker