Using bind variables in Solr
I am trying to load a huge amount of data from a Oracle database to Solr, and I see in the oracle console that Solr is not using any kind of "bind variables" in a query like:
select field1, field2, field3 from table where 开发者_开发知识库id = myId
Where myId is the result of a iteration. Oracle is processing querys as they had no relation between them. Are there any way to force Solr to use bind variables in solr? Thanks !!
Maybe you could try to set CURSOR_SHARING=FORCE for session or system.
精彩评论