Okay, so I've found in the solr tutorial that if you do a POST command and
post a new entry with the same uniquekey (in my case, id_) as an entry
already in the index, solr will automatically replace it for you. That
seems to be what I need, right?
--
View this message in context:
http://lucen
Hi,
I've been researching how to update a specific field of an entry in Solr,
and it seems like the only way to do this is a delete then an add. Is there
a better way to do this? If I want to change one field, do I have to store
the whole entry locally, delete it from the solr index, and then add
That was it, I had to restart Solr for the schema changes to take effect
--
View this message in context:
http://lucene.472066.n3.nabble.com/Can-t-find-some-fields-in-solr-result-tp4099245p4099446.html
Sent from the Solr - User mailing list archive at Nabble.com.
All fields are set to stored="true" in my schema.xml, and fl=* doesn't change
the output of the response. I even checked the logs, no errors on any
fields.
--
View this message in context:
http://lucene.472066.n3.nabble.com/Can-t-find-some-fields-in-solr-result-tp4099245p4099251.html
Sent from
Also also, adding fl=* still doesn't solve the problem, still only 19 fields
returning. And the missing fields definitely have values, because I can do a
specific solr query of a missing field and its value, and the entry show up
(with only 19 fields again though)
--
View this message in context
Also, no errors in the Logging, and all fields are in the schema.xml.
--
View this message in context:
http://lucene.472066.n3.nabble.com/Can-t-find-some-fields-in-solr-result-tp4099245p4099247.html
Sent from the Solr - User mailing list archive at Nabble.com.
Hi,
I have a database that has about 25 fields for each entry. However, when I
do a solr *:* query, I can only see the first 19 fields for each entry.
However, I can successfully use the fields that don't show up as queries.
So weird! Because that means that solr has them, but isn't sending the
numFound is 10.
numDocs is 10, maxDoc is 23. Yeah, Solr 4.x!
Thanks!
--
View this message in context:
http://lucene.472066.n3.nabble.com/Solr-not-indexing-everything-from-MongoDB-tp4097302p4097340.html
Sent from the Solr - User mailing list archive at Nabble.com.
Hi,
I have a Mongo database with about 50 entries inside. I use a mongo-solr
connector. When I do a Solr *:* query, I only get about 10 or 13 responses.
Even if I increase the max rows. I have updated my schema.xml accordingly.
I have deleted my solr index, restarted solr, restarted the connec