(I am using solr 3.4 and edismax.)
In my index, I have a multivalued field named "genre". One of the
values this field can have is "Citation". I would like documents that
have a genre field of Citation to always be at the bottom of the
search results.
I've been experimenting, but I can't seem to
omething I don't get about queries.
On Mon, Oct 31, 2011 at 10:08 AM, Erik Hatcher wrote:
> Paul (*bows* to the NINES!) -
>
> If you literally want Citations always at the bottom regardless of other
> relevancy, then perhaps consider indexing boolean top_sort as true for
>
On Mon, Oct 31, 2011 at 10:41 AM, Erik Hatcher wrote:
> Paul - look at debugQuery=true output to see why scores end up the way they
> do. Use the explainOther to hone in on a specific document to get it's
> explanation. The math'll tell you why it's working the way it
a score of 0.0045761107. Those two numbers
are added together to get the total score.
I tried putting a negative boost number in, but that isn't legal.
Is there a way to express "genre does not equal Citation" as an
optional parameter that I can boost?
On Mon, Oct 31, 2011 a
(Sorry for so many messages in a row...)
For the record, I figured out something that will work, although it is
somewhat inelegant. My q parameter is now:
(+content:notes -genre:Citation)^20 (+content:notes genre:Citation)^0.01
Can I improve on that?
On Mon, Oct 31, 2011 at 5:52 PM, Paul
t seems particularly inefficient. I can't find
any other way to do this, though.
Thanks,
Paul
t; request your IDs to keep it snappy, then do a second query against the IDs
> and sort by your other field. 1000 seems like a lot for that approach, but
> who knows until you try it on your data.
>
> -Kallin Nagelberg
>
>
> -Original Message-
> From: Paul [mailto:p.
sible to do a search with "score:[5 to *]"? It didn't work in
my first attempt.
On Wed, Jul 14, 2010 at 5:34 PM, Paul wrote:
> I was hoping for a way to do this purely by configuration and making
> the correct GET requests, but if there is a way to do it by creating a
> cus
not the middle name.
How can I get the matches of the "text_lu" analyzer, but get the hints
like the "string" analyzer?
Thanks,
Paul
Here's my solution. I'm posting it in case it is radically wrong; I
hope someone can help straighten me out. It seems to work fine, and
seems fast enough.
In schema.xml:
I've got a process that is replacing about 180K documents that are all
similar (I'm actually just adding one field to each of them). This is
mostly working fine, but occasionally (perhaps 100 times), I get this error:
409 Conflict
Error:
{'responseHeader'=>{'status'=>409,'QTime'=>1},'error'=>{'msg
at 4:05 PM, Paul wrote:
> I've got a process that is replacing about 180K documents that are all
> similar (I'm actually just adding one field to each of them). This is
> mostly working fine, but occasionally (perhaps 100 times), I get this error:
>
> 409 Conflict
> Erro
I do a brute-force regression test where I read all the documents from
shard 1 and compare them to documents in shard 2. I had to have all the
fields stored to do that, but in my case that doesn't change the size of
the index much.
So, in other words, I do a search for a page's worth of documents
Are you asking how to test your own code, that happens to have a solr
query somewhere in the middle of it? I've done this two ways:
1) You can mock the solr call by detecting that you are in test mode
and just return the right answer. That will be fast.
2) Or you set up a second core with the nam
Let's say that I have a facet named 'subject' that contains one of:
physics, chemistry, psychology, mathematics, etc
I'd like to do a search for the top 5 documents in each category. I
can do this with a separate search for each facet, but it seems like
there would a way to combine the search.
Test it to see if that is what you want.
>
> Thanks
> Emmanuel
>
>
> 2012/2/29 Paul :
>> Let's say that I have a facet named 'subject' that contains one of:
>> physics, chemistry, psychology, mathematics, etc
>>
>> I'd like to do a search
On Fri, Dec 3, 2010 at 4:47 PM, Erick Erickson wrote:
> But why do you have two cores in the first place? Is it really necessary or
> is it just
> making things more complex?
I don't know why the OP wants two cores, but I ran into this same
problem and had to abandon using a second core. My use c
> I see from your other messages that these indexes all live on the same
> machine.
> You're almost certainly I/O bound, because you don't have enough memory for
> the
> OS to cache your index files. With 100GB of total index size, you'll get best
> results with between 64GB and 128GB of total R
We've created an index from a number of different documents that are
supplied by third parties. We want the index to only contain UTF-8
encoded characters. I have a couple questions about this:
1) Is there any way to be sure during indexing (by setting something
in the solr configuration?) that th
Thanks for all the responses.
CharsetDetector does look promising. Unfortunately, we aren't allowed
to keep the original of much of our data, so the solr index is the
only place it exists (to us). I do have a java app that "reindexes",
i.e., reads all documents out of one index, does some transfor
1723200600 should have been returned as the 181,499th item.
Is this a known solr bug or is there something subtle going on?
Thanks,
Paul
Thanks, going to update now. This is a system that is currently
deployed. Should I just update to 1.4.1, or should I go straight to
3.0? Does 1.4 => 3.0 require reindexing?
On Wed, Feb 16, 2011 at 5:37 PM, Yonik Seeley
wrote:
> On Wed, Feb 16, 2011 at 5:08 PM, Paul wrote:
>> Is
I'm using solr 1.4.1.
I have a document that has a pretty big field. If I search for a
phrase that occurs near the start of that field, it works fine. If I
search for a phrase that appears even a little ways into the field, it
doesn't find it. Is there some limit to how far into a field solr will
Ah, no, I'll try that now.
What is the disadvantage of setting that to a really large number?
I do want the search to work for every word I give to solr. Otherwise
I wouldn't have indexed it to begin with.
On Wed, Mar 23, 2011 at 11:15 AM, Sascha Szott wrote:
> Hi Paul,
>
&g
won't get bored waiting? Is there
some optimization of this coming in solr 3.0?
On Wed, Mar 23, 2011 at 12:15 PM, Sascha Szott wrote:
> Hi Paul,
>
> did you increase the value of the maxFieldLength parameter in your
> solrconfig.xml?
>
> -Sascha
>
> On 23.03.2011 17:05
repeat the search with highlighting that can take its time to
finish.
(I, too, have seen random really long response times that seem to be
related to not enough RAM, but this isn't the problem because the
results here are repeatable.)
On Wed, Mar 23, 2011 at 2:30 PM, Sascha Szott wrote:
>
start
process are going to return errors. The other way to do it is to use
copytruncate
but that will cause any requests that come in during the time that the
file is being truncated to not appear in the log.
How do you set up your logrotate file?
Thanks,
Paul
I'm using solr 1.4.1 and just noticed a bunch of these errors in the
solr.log file:
SEVERE: java.util.concurrent.ExecutionException:
java.lang.NoSuchMethodError:
org.apache.solr.common.util.ConcurrentLRUCache$Stats.add(Lorg/apache/solr/common/util/ConcurrentLRUCache$Stats;)V
They appear to happen
&\w{1,6};
To find any escaped sequences that might have slipped through.
Is this possible? I have indexed these fields with text_lu, which
looks like this:
Thanks,
Paul
I'm having this issue with solr 3.1:
https://issues.apache.org/jira/browse/LUCENE-1824
It looks like there is a patch offered, but I can't figure out how to apply it.
What is the easiest way for me to get this fix? I'm just using the
example solr with changed conf xml files. Is there a file some
Sorry if this has been asked before, but I couldn't seem to find it...
I've got a fairly simple index, and I'm searching on a field of type
text_en, and the results are good: I search for "computer" and I get
back hits for "computer", "computation", "computational", "computing".
I also want to cr
I'm trying to set up two cores that share everything except their
data. (This is for testing: I want to create a parallel index that is
used when running my testing scripts.) I thought that would be
straightforward, and according to the documentation, I thought the
following would work:
By trial an error, I found that you evidently need to put that
property inline, so this version works:
Is the documentation here in error? http://wiki.apache.org/solr/CoreAdmin
On Tue, Sep 4, 2012 at 2:50 PM, Paul wrote:
> I'm trying to set up two cores that share everythin
I don't think I changed by solrconfig.xml file from the default that
was provided in the example folder for solr 4.0.
On Tue, Sep 4, 2012 at 3:40 PM, Chris Hostetter
wrote:
>
> :
>
> I'm pretty sure what you hav above tells solr that core MYCORE_test it
> should use the instanceDir MYCORE but
I've recently upgraded to solr 4.0 from solr 3.5 and I think my delete
statement used to work, but now it doesn't seem to be deleting. I've
been experimenting around, and it seems like this should be the URL
for deleting the document with the uri of "network_24".
In a browser, I first go here:
ht
ld does not
> exist in schema".
>
> See:
> https://issues.apache.org/jira/browse/SOLR-3432
>
> -- Jack Krupansky
>
> -Original Message- From: Paul
> Sent: Wednesday, September 05, 2012 10:05 AM
> To: solr-user
> Subject: Still see document after delete wit
Actually, I didn't technically "upgrade". I downloaded the new
version, grabbed the example, and pasted in the fields from my schema
into the new one. So the only two files I changed from the example are
schema.xml and solr.xml.
Then I reindexed everything from scratch so there was no old index
in
I have some documents that contain a date field. I'd like to set up a
facet that groups the dates in two buckets: 1) before today, 2) today
and in the future.
It seems like I should be using range faceting, but I don't see how to
set up the parameters. Is there another way to get what I want?
The
t;
> -Original Message-
> From: Paul [mailto:p...@nines.org]
> Sent: Thursday, October 18, 2012 5:28 PM
> To: solr-user@lucene.apache.org
> Subject: facet by "in the past" and "in the future"
>
> I have some documents that contain a date field. I'd like t
Limit the number of results when the results are sorted.
In other words, if the results are sorted by name and there are 10,000
results, then there will be items of low relevancy mixed in with the
results and it is hard for the user to find the relevant ones. If I
could say, "give me no more than
Hi all,
In my app, it seems like solr has become slower over time. The index
has grown a bit, and there are probably a few more people using the
site, but the changes are not drastic.
I notice that when a solr search is made, the amount of cpu and ram
spike precipitously.
I notice in the solr lo
>Have you looked at the garbage collector statistics? I've experienced this
>kind of issues in the past
and I was getting huge spikes when the GC was doing its job.
I haven't, and I'm not sure what a good way to monitor this is. The
problem occurs maybe once a week on a server. Should I run jstat
Hi,
I have enabled HTTPS on my SOLR server and it works fine over HTTPS for
interaction with SOLR via the browser such as for data queries and
management actions.
However, I now get an error when attempting to retrieve data from the SQL
server for Indexing. The JDBC connection string has the para
parameters.
Cheers
Paul
On 5/23/2019 5:45 AM, Paul wrote:
> unable to find
> valid certification path to requested target
This seems to be the root of your problem with the connection to SQL server.
If I have all the context right, Java is saying it can't validate the
certificate retu
Ta - it works if I set trustCertificate=true so for now that will do for
test.
--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html
SOLVED: Now implemented with a bespoke trust store set up for SOLR ...
--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html
Hi,
Can someone please outline how to use mutual TLS 1.2 with SOLR. Or, point me
at docs/tutorials/other where I can read up further on this (version
currently onsite is SOLR 7.6).
Thanks
Paul
--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html
Hi,
I am not sure if Basic Authentication is possible in SOLR standalone
configuration (version 7.6). I have a working SOLR installation using SSL.
When following the docs I add options into solr.in.cmd, as in:
SOLR_AUTH_TYPE="basic"
SOLR_AUTHENTICATION_OPTS="-Dbasicauth=solr:SolrRocks"
When I g
, unless assigned proper roles
> 3) if a user is assigned the default “read” rule, and a collection adds a
> custom “/myselect” handler, that one is unavailable until the user gets it
> assigned
>
> --
> Jan Høydahl, search solution architect
> Cominvent AS - www.cominvent.co
I have opened https://issues.apache.org/jira/browse/SOLR-8429
On Wed, Dec 16, 2015 at 9:32 PM, Noble Paul wrote:
> I don't this behavior is intuitive. It is very easy to misunderstand
>
> I would rather just add a flag to "authentication" plugin section
> which says &q
A 5.3.2 release is coming up which will back port the fixes introduced in
5.4
On Dec 17, 2015 10:25 PM, "tine-2" wrote:
> Noble Paul നോബിള് नोब्ळ् wrote
> > It works as designed.
> >
> > Protect the read path [...]
>
> Works like described in 5.
re. I check if it is running in the
> processes list and it turns out it is NOT. Please help me to solve this
> problem!
>
> Best regards,
>
> Agon
This could be a permissions problem -- for example, perhaps you started
it as root the first time and are now attempting to st
How about using POST?
paul
> Salman Ansari <mailto:salman.rah...@gmail.com>
> 31 January 2016 at 15:20
> Hi,
>
> I am building a long query containing multiple ORs between query terms. I
> started to receive the following exception:
>
> The remote server returned a
.
Thanks,
Paul McCallick
Sr Manager Information Technology
eCommerce Foundation
t;
> --
> View this message in context:
> http://lucene.472066.n3.nabble.com/Custom-auth-plugin-not-loaded-in-SolrCloud-tp4245670p4248340.html
> Sent from the Solr - User mailing list archive at Nabble.com.
--
-----
Noble Paul
eisey" wrote:
>On 2/10/2016 10:33 AM, McCallick, Paul wrote:
>> We’re trying to fine tune our query and ingestion performance and would like
>> to get more metrics out of SOLR around this. We are capturing the standard
>> logs as well as the jetty request logs. The standa
use the core admin api to add the node to the collection.
I would really like to see the second case behave more like the first. If I
add a node to the cluster, it is automatically used as a replica for existing
clusters without my having to do so. This would really simplify things.
Paul
This looks like the stored content is shortened. Can it be?
Can you see that inside the docs?
paul
> Evert R. <mailto:evert.ra...@gmail.com>
> 14 February 2016 at 11:26
> Hi There,
>
> I have a situation where started a techproducts, without any modification,
> post a pdf
out on the user. This can be challenging in an autoscale scenario.
Thanks,
Paul
> On Feb 14, 2016, at 12:25 AM, Shawn Heisey wrote:
>
>> On 2/13/2016 6:01 PM, McCallick, Paul wrote:
>> - When creating a new collection, SOLRCloud will use all available nodes for
>> the
collections api (ADDREPLICA), makes
this very difficult.
On 2/14/16, 8:19 AM, "Susheel Kumar" wrote:
>Hi Paul,
>
>Shawn is referring to use Collections API
>https://cwiki.apache.org/confluence/display/solr/Collections+API than Core
>Admin API https://cwiki.apache.or
d nodes to.
Let me know if I'm making dangerous or uninformed assumptions, as I'm new to
solr.
Thanks,
Paul
> On Feb 14, 2016, at 10:35 AM, Susheel Kumar wrote:
>
> Hi Pual,
>
>
> For Auto-scaling, it depends on how you are thinking to design and what/how
>
ng updates of your SolrCloud nodes
Hth
Paul
>
> On Tue, Feb 16, 2016 at 7:31 AM, Susheel Kumar
> wrote:
>
> > In SolrJ, you would use CloudSolrClient which interacts with Zookeeper
> > (which maintains Cluster State). See CloudSolrClient API. So that's how
> > SolrJ would know which node is down or not.
>
I've been running Solr successfully until this morning, when I stopped
it to pick up a change in my schema, and now it won't start up again.
I've whittled the problem down to this:
----
# cd /home/paul/proj/b
On Tue, Mar 15, 2016 at 01:46:32PM -0600, Shawn Heisey wrote:
> On 3/15/2016 1:34 PM, Paul Hoffman wrote:
> > I've been running Solr successfully until this morning, when I stopped
> > it to pick up a change in my schema, and now it won't start up again.
> > I&
On Tue, Mar 15, 2016 at 07:58:21PM -0600, Shawn Heisey wrote:
> On 3/15/2016 2:56 PM, Paul Hoffman wrote:
> >> It sure looks like I started Solr from my blacklight project dir.
> >>
> >> Any ideas? Thanks,
> >>
>
> You may need to get some help from t
might be the hardest part -- CSV is not a file format, it's a
hodgepodge.
Paul.
--
Paul Hoffman
Systems Librarian
Fenway Libraries Online
c/o Wentworth Institute of Technology
550 Huntington Ave.
Boston, MA 02115
(617) 442-2384 (FLO main number)
es that
use an fq. Could someone post an example?
Thanks in advance,
Paul.
--
Paul Hoffman
Systems Librarian
Fenway Libraries Online
c/o Wentworth Institute of Technology
550 Huntington Ave.
Boston, MA 02115
(617) 442-2384 (FLO main number)
-- in my case, not only
was I asking the wrong question, but I shouldn't even have had to ask
the (right) question at all!
Thanks again, everyone.
Paul.
--
Paul Hoffman
Systems Librarian
Fenway Libraries Online
c/o Wentworth Institute of Technology
550 Huntington Ave.
Boston, MA 02115
(617) 442-2384 (FLO main number)
thought the query was wrong, but the example you pointed
me to clued me in to the real problem: I had neglected to specify
Content-Type: application.json (d'oh!).
Paul.
--
Paul Hoffman
Systems Librarian
Fenway Libraries Online
c/o Wentworth Institute of Technology
550 Huntington Ave.
Bost
s instead:
for file in *.json; do
curl 'http://localhost:8984/solr/update?commit=true' --data-binary "$file"
-H 'Content-type:application/json'
done
Paul.
--
Paul Hoffman
Systems Librarian
Fenway Libraries Online
c/o Wentworth Institute of Technology
550 Huntington Ave.
Boston, MA 02115
(617) 442-2384 (FLO main number)
>>
>>
>> --
>> View this message in context:
>> http://lucene.472066.n3.nabble.com/Basic-auth-tp4218053p4218519.html
>> Sent from the Solr - User mailing list archive at Nabble.com.
>>
--
-
Noble Paul
own security.json + class/implementation to verify user/pass
> should work today with 5.2, right?
>
> Thanks
> Fadi
>
>> On 22 Jul 2015, at 14:33, Noble Paul wrote:
>>
>> Solr 5.3 is coming with proper basic auth support
>>
>>
>> https://issue
out of
> other things since I see many mails usually in consensus of not embedding and
> rather want people to consider Solr as a stand-alone service, not sure why!
> I'm probably getting out of context here.
>
> Regards
>
>> On 27 Jul 2015, at 13:17, Noble Paul
an example somewhere?
thanks
Paul
signature.asc
Description: OpenPGP digital signature
ms)^boost-function
Not exactly the same or?
thanks
Paul
. I’ve found some examples on user authentication on the Jetty side.
> But they have failed.
>
> Does any one have a step by step example on authentication for the admin
> screen? And a core?
>
>
> Thanks
>
> Tom LeZotte
> Health I.T. - Senior Product Developer
> (p) 615-875-8830
>
>
>
>
>
>
>
--
-
Noble Paul
>
>
>
> --
> Arcadius Ahouansou
> Menelic Ltd | Information is Power
> M: 07908761999
> W: www.menelic.com
> ---
--
-
Noble Paul
no.
Most of it is in Solr 5.3
On Tue, Aug 25, 2015 at 12:48 AM, Steven White wrote:
> Hi Noble,
>
> Is everything in the link you provided applicable to Solr 5.2.1?
>
> Thanks
>
> Steve
>
> On Mon, Aug 24, 2015 at 2:20 PM, Noble Paul wrote:
>
>> did you m
ing lists
(http://lucene.apache.org/solr/discussion.html)
--
-
Noble Paul
www.lucidworks.com
sorry , screwed up the title
On Tue, Aug 25, 2015 at 8:30 AM, Noble Paul wrote:
> Solr is the popular, blazing fast, open source NoSQL search platform
> from the Apache Lucene project. Its major features include powerful
> full-text search, hit highlighting, faceted search, dynamic
>
ing lists
(http://lucene.apache.org/solr/discussion.html)
--
-
Noble Paul
www.lucidworks.com
tion/json' -d '{"set-user": {"user" : “password" }}'
>>
>> Issue the following command to add permission to users
>> curl -u solr:SolrRocks -H 'Content-type:application/json' -d '{
>> "set-user-role" : {"admin": ["search-user", "admin"]}}'
>> http://localhost:8983/solr/admin/authorization
>> curl -u solr:SolrRocks -H 'Content-type:application/json' -d '{
>> "set-user-role" : {"user": ["search-user"]}}'
>> http://localhost:8983/solr/admin/authorization
>>
>> After executing the above, access to /mysearch is protected until I restart
>> the Solr and Zookeeper instances. However, the admin UI is never protected
>> like the Wiki page says it should be once activated.
>>
>> https://cwiki.apache.org/confluence/display/solr/Rule-Based+Authorization+Plugin
>>
>> <https://cwiki.apache.org/confluence/display/solr/Rule-Based+Authorization+Plugin>
>>
>> Why does the authentication and authorization plugin not stay activated
>> after restart and why is the Admin UI never protected? Am I missing any
>> steps?
>>
>> Thanks,
>> Kevin
--
-
Noble Paul
I'm investigating why restarts or first time start does not read the
security.json
On Tue, Sep 1, 2015 at 1:00 PM, Noble Paul wrote:
> I removed that statement
>
> "If activating the authorization plugin doesn't protect the admin ui,
> how does one protect access to it
n't see
> any plugin enabled even though security.json is already in zookeeper and then
> after they are started and the security.json is uploaded again I see it
> reconfigure to use the plugin.
>
> Thanks,
> Kevin
>
>> On Aug 31, 2015, at 11:22 PM, Noble Paul wrote:
Looks like there is a bug in that . On start/restart the security.json
is not loaded
I shall open a ticket
https://issues.apache.org/jira/browse/SOLR-8000
On Tue, Sep 1, 2015 at 1:01 PM, Noble Paul wrote:
> I'm investigating why restarts or first time start does not read the
> se
]
> }
> }
> }
>
> Also tried adding the permission using the Authorization API, but no effect,
> still isn’t protecting the Collections API from being invoked without a
> username password. I do see in the Solr logs that it sees the updates
&
ions aren’t working, but the one to the
> request handler at the /browse path is.
>
>
>> On Sep 1, 2015, at 11:03 PM, Noble Paul wrote:
>>
>> " However, after uploading the new security.json and restarting the
>> web browser,"
>>
>> The browser rememb
Both these are committed. If you could test with the latest 5.3 branch
it would be helpful
On Wed, Sep 2, 2015 at 5:11 PM, Noble Paul wrote:
> I opened a ticket for the same
> https://issues.apache.org/jira/browse/SOLR-8004
>
> On Wed, Sep 2, 2015 at 1:36 PM, Kevin Lee wrote:
&
json after startup of the Solr instances. If I shutdown and bring
>> the instances back up, the security is no longer in place and I have to
>> upload the security.json again for it to take effect.
>>
>> - Kevin
>>
>> > On Sep 3, 2015, at 10:29 PM, Noble Paul wr
Just a word of warning: iso-8601, the date format standard, is quite big, to
say the least, and I thus expect very few implementations to be complete.
I survived one such interoperability issue with Safari on iOS6. While they (and
JS I think) claim iso-8601, it was not complete and fine grained
sic Authentification?
>
> Thank you for any help
--
-----
Noble Paul
ectly running system with solr
> 3.x and one core and now taking it to solr cloud 5.2.x into production
> seems to be stoped by simple authorization problems.
>
> Thank you in advane for any help.
>
>
>
> 2015-09-10 20:42 GMT+02:00 Noble Paul :
>
>> Check this https:
;
>>> ERROR: Failed to get system information from http://localhost:8983/solr
>>> due
>>> to: org.apache.http.client.ClientProtocolException: Expected JSON response
>>> from server but received:
>>>
>>>
>>>
>>>
>>>
>>> Error 401 Unauthorized
>>>
>>>
>>>
>>> HTTP ERROR 401
>>>
>>> Problem accessing /solr/admin/info/system. Reason:
>>>
>>> UnauthorizedPowered by
>>> Jetty://
>>>
>>>
>>>
>>>
>>>
>>>
>>
>>
--
-
Noble Paul
Writing a query component would be pretty easy or?
It would throw an exception if crazy numbers are requested...
I can provide a simple example of a maven project for a query component.
Paul
William Bell wrote:
> We have some Denial of service attacks on our web site. SOLR threads are
>
release yet. If that is the
case, please try another mirror. This also goes for Maven access.
Noble Paul
on behalf of Lucene PMC
Wrong title
On Thu, Sep 24, 2015 at 10:55 PM, Noble Paul wrote:
> 24 September 2015, Apache Solr™ 5.3.1 available
>
>
> The Lucene PMC is pleased to announce the release of Apache Solr 5.3.1
>
>
> Solr is the popular, blazing fast, open source NoSQL search platform
>
min UI stats page
Known issues:
* On Windows, bin/solr.cmd script fails to start correctly when using
relative path with -s parameter. Use absolute path as a workaround .
https://issues.apache.org/jira/browse/SOLR-8073
See the CHANGES.txt file included with the release for a full list of
cha
ut of course, it
requires a community approach.
Maybe both are needed if there's an infinite budget...
Paul
> Charlie Hull <mailto:char...@flax.co.uk>
> 8 octobre 2015 09:48
>
> Hi Lewin,
>
> We built this feature for another search engine (based on Xapian,
>
note that this is just a suggestion. In particular, parameters
really need some testing and adjustment, I think.
Paul
> Erick Erickson <mailto:erickerick...@gmail.com>
> 1 novembre 2015 07:40
> Yeah, that's actually a tough one. You have no control over what the
> user type
s.
In IMDB, words such as the names of persons would come in at least
different roles; similarly, the actors' role's name is likely to match
the family name of persons...
Paul
> As others indicated having intelligence to recognize the terms (e.g.
> Kate should be in name) or some us
1 - 100 of 1658 matches
Mail list logo