c# - SolrNet OR query -


i trying query records parentid = thread or dataid = thread. query keeps timing out on me. there wrong query below?

var test = solr.query(new solrquerybyfield("parentid", thread) ||                      (new solrquerybyfield("dataid", thread))); 

i not expert in solr.net have used 1 project. can suggest try couple of things.

first go solr admin , try executing query:

(parentid:"thread") or (dataid:"thread") 

if result , not timing out, can use same string in solr.net like:

string strquery = "(parentid:\"thread\") or (dataid:\"thread\")";  // or use * contains instead of double quotes var query = new solrquery(strquery); sortorder sortorder = new sortorder("parentid"); var solrqueryresult = solr.query(query, new queryoptions     {         rows = 100, //max rows returned         start = 0,         orderby = new[] { sortorder }, //if want ordered result     });  var list = solrqueryresult.tolist();//if want list 

Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -