Skip to content

Instantly share code, notes, and snippets.

@phact
Created September 25, 2014 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phact/ff1dbdca93b18813292c to your computer and use it in GitHub Desktop.
Save phact/ff1dbdca93b18813292c to your computer and use it in GitHub Desktop.
Query
<response>
<lst name="responseHeader">
<int name="status">0</int>
<int name="QTime">900</int>
<str name="handler">org.apache.solr.handler.component.SearchHandler</str>
<lst name="params">
<str name="debugQuery">true</str>
<str name="q">*:*</str>
</lst>
</lst>
<result name="response" numFound="56075951" start="0" maxScore="1.0">...</result>
<lst name="debug">
<str name="rawquerystring">*:*</str>
<str name="querystring">*:*</str>
<str name="parsedquery">MatchAllDocsQuery(*:*)</str>
<str name="parsedquery_toString">*:*</str>
<str name="QParser">LuceneQParser</str>
<arr name="filter_queries">
<str>
{!caching_lucene}((+_token_lhs:1614089825327856838 +_token_rhs:[7964170700636114924 TO *]) OR (+_token_lhs:[1614089825327856839 TO 6225775843755244741]) OR (+_token_lhs:6225775843755244742 +_token_rhs:[* TO 7964170700636114923]))
</str>
</arr>
<arr name="parsed_filter_queries">
<str>
(+_token_lhs:1614089825327856838 +_token_rhs:[7964170700636114924 TO *]) (+_token_lhs:[1614089825327856839 TO 6225775843755244741]) (+_token_lhs:6225775843755244742 +_token_rhs:[* TO 7964170700636114923])
</str>
</arr>
<lst name="timing">
<double name="time">5.0</double>
<lst name="prepare">
<double name="time">1.0</double>
<lst name="query">
<double name="time">0.0</double>
</lst>
<lst name="facet">
<double name="time">0.0</double>
</lst>
<lst name="mlt">
<double name="time">0.0</double>
</lst>
<lst name="highlight">
<double name="time">0.0</double>
</lst>
<lst name="stats">
<double name="time">1.0</double>
</lst>
<lst name="debug">
<double name="time">0.0</double>
</lst>
</lst>
<lst name="process">
<double name="time">4.0</double>
<lst name="query">
<double name="time">3.0</double>
</lst>
<lst name="facet">
<double name="time">0.0</double>
</lst>
<lst name="mlt">
<double name="time">0.0</double>
</lst>
<lst name="highlight">
<double name="time">0.0</double>
</lst>
<lst name="stats">
<double name="time">0.0</double>
</lst>
<lst name="debug">
<double name="time">1.0</double>
</lst>
</lst>
</lst>
<lst name="explain">
<str name="https://twitter.com/#!/HossHudson/status/510477079918305281">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="https://twitter.com/#!/initforscience/status/510468351152644096">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="https://twitter.com/#!/RetiredMoonBoot/status/510476649960198145">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="https://twitter.com/#!/Voice4silenced/status/510465373519351808">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="http://blogs.seattletimes.com/today/2014/09/cleanup-work-ending-friday-at-oso-mudslide/">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="https://www.etsy.com/listing/183211420/vintage-dovetailed-wood-cigar-box-wm">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="https://twitter.com/#!/fcr501/status/510464865438564352">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="https://twitter.com/#!/WilliamWhiting2/status/510478014413819904">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="https://twitter.com/#!/twitrpkrupr/status/510465359191605248">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
<str name="https://www.etsy.com/listing/203263126/halloween-shirts-im-going-to-be-a-big">
1.0 = (MATCH) MatchAllDocsQuery, product of: 1.0 = queryNorm
</str>
</lst>
</lst>
</response>
edismax query on two fields like:
http://192.168.102.4:8983/solr/ResultlyData.StreamData/select?q=black+pants&fl=id&wt=xml&indent=true&defType=edismax&qf=Title%5E10+Description&pf=Title%5E50+Description%5E15&bq=(*%3A*+-Channel%3Aebay+-Channel%3Aetsy)%5E999++(*%3A*+Channel%3ANordstrom)%5E100000++&stopwords=true&lowercaseOperators=true&query.name=myquery2&debugQuery=true
is taking 4 seconds:
<response>
<lst name="responseHeader">
<int name="status">0</int>
<int name="QTime">3915</int>
<str name="handler">org.apache.solr.handler.component.SearchHandler</str>
<lst name="params">
<str name="lowercaseOperators">true</str>
<str name="pf">Title^50 Description^15</str>
<str name="debugQuery">true</str>
<str name="bq">
(*:* -Channel:ebay -Channel:etsy)^999 (*:* Channel:Nordstrom)^100000
</str>
<str name="fl">id</str>
<str name="indent">true</str>
<str name="q">black pants</str>
<str name="qf">Title^10 Description</str>
<str name="query.name">myquery2</str>
<str name="stopwords">true</str>
<str name="wt">xml</str>
<str name="defType">edismax</str>
</lst>
</lst>
<result name="response" numFound="5407182" start="0" maxScore="7.0115747">...</result>
<lst name="debug">
<str name="rawquerystring">black pants</str>
<str name="querystring">black pants</str>
<str name="parsedquery">
(+(DisjunctionMaxQuery((Description:black | Title:black^10.0)) DisjunctionMaxQuery((Description:pant | Title:pant^10.0))) DisjunctionMaxQuery((Title:"black pant"^50.0)) DisjunctionMaxQuery((Description:"black pant"^15.0)) (((MatchAllDocsQuery(*:*) -Channel:ebay -Channel:etsy)^999.0) ((MatchAllDocsQuery(*:*) Channel:nordstrom)^100000.0)))/no_coord
</str>
<str name="parsedquery_toString">
+((Description:black | Title:black^10.0) (Description:pant | Title:pant^10.0)) (Title:"black pant"^50.0) (Description:"black pant"^15.0) (((*:* -Channel:ebay -Channel:etsy)^999.0) ((*:* Channel:nordstrom)^100000.0))
</str>
<str name="QParser">ExtendedDismaxQParser</str>
<null name="altquerystring"/>
<arr name="boost_queries">
<str>
(*:* -Channel:ebay -Channel:etsy)^999 (*:* Channel:Nordstrom)^100000
</str>
</arr>
<arr name="parsed_boost_queries">
<str>
((MatchAllDocsQuery(*:*) -Channel:ebay -Channel:etsy)^999.0) ((MatchAllDocsQuery(*:*) Channel:nordstrom)^100000.0)
</str>
</arr>
<null name="boostfuncs"/>
<arr name="filter_queries">...</arr>
<arr name="parsed_filter_queries">
<str>
(+_token_lhs:6225775843755244742 +_token_rhs:[7964170700636114924 TO *]) (+_token_lhs:[6225775843755244743 TO *]) (+_token_lhs:[* TO 175143118717493651]) (+_token_lhs:175143118717493652 +_token_rhs:[* TO -2401108712894176927]) (+_token_lhs:175143118717493652 +_token_rhs:[-2401108712894176926 TO *]) (+_token_lhs:[175143118717493653 TO 1614089825327856837]) (+_token_lhs:1614089825327856838 +_token_rhs:[* TO 7964170700636114923])
</str>
</arr>
<lst name="timing">
<double name="time">49.0</double>
<lst name="prepare">
<double name="time">1.0</double>
<lst name="query">
<double name="time">1.0</double>
</lst>
<lst name="facet">
<double name="time">0.0</double>
</lst>
<lst name="mlt">
<double name="time">0.0</double>
</lst>
<lst name="highlight">
<double name="time">0.0</double>
</lst>
<lst name="stats">
<double name="time">0.0</double>
</lst>
<lst name="debug">
<double name="time">0.0</double>
</lst>
</lst>
<lst name="process">
<double name="time">48.0</double>
<lst name="query">
<double name="time">3.0</double>
</lst>
<lst name="facet">
<double name="time">0.0</double>
</lst>
<lst name="mlt">
<double name="time">0.0</double>
</lst>
<lst name="highlight">
<double name="time">0.0</double>
</lst>
<lst name="stats">
<double name="time">0.0</double>
</lst>
<lst name="debug">
<double name="time">45.0</double>
</lst>
</lst>
</lst>
<lst name="explain">
<str name="http://shop.nordstrom.com/s/prabal-gurung-tuxedo-stripe-track-pants/3638060">
7.011575 = (MATCH) sum of: 3.1063872E-4 = (MATCH) sum of: 2.2831143E-6 = (MATCH) max of: 2.2831143E-6 = (MATCH) weight(Description:black in 2485984) [DefaultSimilarity], result of: 2.2831143E-6 = score(doc=2485984,freq=1.0 = termFreq=1.0 ), product of: 5.104604E-6 = queryWeight, product of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 1.426614E-6 = queryNorm 0.4472657 = fieldWeight in 2485984, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 0.125 = fieldNorm(doc=2485984) 3.083556E-4 = (MATCH) max of: 6.753512E-6 = (MATCH) weight(Description:pant in 2485984) [DefaultSimilarity], result of: 6.753512E-6 = score(doc=2485984,freq=1.0 = termFreq=1.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.7692484 = fieldWeight in 2485984, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.125 = fieldNorm(doc=2485984) 3.083556E-4 = (MATCH) weight(Title:pant^10.0 in 2485984) [DefaultSimilarity], result of: 3.083556E-4 = score(doc=2485984,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 3.2874389 = fieldWeight in 2485984, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.5 = fieldNorm(doc=2485984) 2.5335065E-4 = (MATCH) weight(Description:"black pant"^15.0 in 2485984) [DefaultSimilarity], result of: 2.5335065E-4 = score(doc=2485984,freq=1.0 = phraseFreq=1.0 ), product of: 2.0825952E-4 = queryWeight, product of: 15.0 = boost 9.732113 = idf(), sum of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 1.2165141 = fieldWeight in 2485984, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = phraseFreq=1.0 9.732113 = idf(), sum of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.125 = fieldNorm(doc=2485984) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 2485984) [DefaultSimilarity], result of: 6.8669243 = score(doc=2485984,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 2485984, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=2485984)
</str>
<str name="http://shop.nordstrom.com/s/3-1-phillip-lim-wide-leg-cuff-pants/3785033">
7.0115113 = (MATCH) sum of: 3.1006793E-4 = (MATCH) sum of: 1.7123357E-6 = (MATCH) max of: 1.7123357E-6 = (MATCH) weight(Description:black in 2986051) [DefaultSimilarity], result of: 1.7123357E-6 = score(doc=2986051,freq=1.0 = termFreq=1.0 ), product of: 5.104604E-6 = queryWeight, product of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 1.426614E-6 = queryNorm 0.33544928 = fieldWeight in 2986051, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 0.09375 = fieldNorm(doc=2986051) 3.083556E-4 = (MATCH) max of: 5.065134E-6 = (MATCH) weight(Description:pant in 2986051) [DefaultSimilarity], result of: 5.065134E-6 = score(doc=2986051,freq=1.0 = termFreq=1.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.5769363 = fieldWeight in 2986051, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.09375 = fieldNorm(doc=2986051) 3.083556E-4 = (MATCH) weight(Title:pant^10.0 in 2986051) [DefaultSimilarity], result of: 3.083556E-4 = score(doc=2986051,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 3.2874389 = fieldWeight in 2986051, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.5 = fieldNorm(doc=2986051) 1.9001299E-4 = (MATCH) weight(Description:"black pant"^15.0 in 2986051) [DefaultSimilarity], result of: 1.9001299E-4 = score(doc=2986051,freq=1.0 = phraseFreq=1.0 ), product of: 2.0825952E-4 = queryWeight, product of: 15.0 = boost 9.732113 = idf(), sum of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.9123856 = fieldWeight in 2986051, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = phraseFreq=1.0 9.732113 = idf(), sum of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.09375 = fieldNorm(doc=2986051) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 2986051) [DefaultSimilarity], result of: 6.8669243 = score(doc=2986051,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 2986051, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=2986051)
</str>
<str name="http://shop.nordstrom.com/s/vince-camuto-ponte-pants/3242815">
7.011399 = (MATCH) sum of: 3.8744224E-4 = (MATCH) sum of: 1.9977251E-6 = (MATCH) max of: 1.9977251E-6 = (MATCH) weight(Description:black in 2640501) [DefaultSimilarity], result of: 1.9977251E-6 = score(doc=2640501,freq=1.0 = termFreq=1.0 ), product of: 5.104604E-6 = queryWeight, product of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 1.426614E-6 = queryNorm 0.3913575 = fieldWeight in 2640501, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 0.109375 = fieldNorm(doc=2640501) 3.8544452E-4 = (MATCH) max of: 5.909323E-6 = (MATCH) weight(Description:pant in 2640501) [DefaultSimilarity], result of: 5.909323E-6 = score(doc=2640501,freq=1.0 = termFreq=1.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.67309237 = fieldWeight in 2640501, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.109375 = fieldNorm(doc=2640501) 3.8544452E-4 = (MATCH) weight(Title:pant^10.0 in 2640501) [DefaultSimilarity], result of: 3.8544452E-4 = score(doc=2640501,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 4.1092987 = fieldWeight in 2640501, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.625 = fieldNorm(doc=2640501) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 2640501) [DefaultSimilarity], result of: 6.8669243 = score(doc=2640501,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 2640501, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=2640501)
</str>
<str name="http://shop.nordstrom.com/s/the-kooples-fitted-black-wool-tuxedo-pants/3667762">
7.01139 = (MATCH) sum of: 3.7930667E-4 = (MATCH) sum of: 1.0949553E-4 = (MATCH) max of: 1.0949553E-4 = (MATCH) weight(Title:black^10.0 in 1700799) [DefaultSimilarity], result of: 1.0949553E-4 = score(doc=1700799,freq=1.0 = termFreq=1.0 ), product of: 5.975337E-5 = queryWeight, product of: 10.0 = boost 4.188475 = idf(docFreq=1263147, maxDocs=30633135) 1.426614E-6 = queryNorm 1.8324579 = fieldWeight in 1700799, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 4.188475 = idf(docFreq=1263147, maxDocs=30633135) 0.4375 = fieldNorm(doc=1700799) 2.6981113E-4 = (MATCH) max of: 5.065134E-6 = (MATCH) weight(Description:pant in 1700799) [DefaultSimilarity], result of: 5.065134E-6 = score(doc=1700799,freq=1.0 = termFreq=1.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.5769363 = fieldWeight in 1700799, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.09375 = fieldNorm(doc=1700799) 2.6981113E-4 = (MATCH) weight(Title:pant^10.0 in 1700799) [DefaultSimilarity], result of: 2.6981113E-4 = score(doc=1700799,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 2.876509 = fieldWeight in 1700799, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.4375 = fieldNorm(doc=1700799) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 1700799) [DefaultSimilarity], result of: 6.8669243 = score(doc=1700799,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 1700799, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=1700799)
</str>
<str name="http://shop.nordstrom.com/s/michael-michael-kors-rocker-zip-detail-black-skinny-pants/3694520">
7.0113363 = (MATCH) sum of: 3.2512E-4 = (MATCH) sum of: 9.385332E-5 = (MATCH) max of: 9.385332E-5 = (MATCH) weight(Title:black^10.0 in 2670044) [DefaultSimilarity], result of: 9.385332E-5 = score(doc=2670044,freq=1.0 = termFreq=1.0 ), product of: 5.975337E-5 = queryWeight, product of: 10.0 = boost 4.188475 = idf(docFreq=1263147, maxDocs=30633135) 1.426614E-6 = queryNorm 1.5706782 = fieldWeight in 2670044, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 4.188475 = idf(docFreq=1263147, maxDocs=30633135) 0.375 = fieldNorm(doc=2670044) 2.3126669E-4 = (MATCH) max of: 5.065134E-6 = (MATCH) weight(Description:pant in 2670044) [DefaultSimilarity], result of: 5.065134E-6 = score(doc=2670044,freq=1.0 = termFreq=1.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.5769363 = fieldWeight in 2670044, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.09375 = fieldNorm(doc=2670044) 2.3126669E-4 = (MATCH) weight(Title:pant^10.0 in 2670044) [DefaultSimilarity], result of: 2.3126669E-4 = score(doc=2670044,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 2.465579 = fieldWeight in 2670044, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.375 = fieldNorm(doc=2670044) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 2670044) [DefaultSimilarity], result of: 6.8669243 = score(doc=2670044,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 2670044, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=2670044)
</str>
<str name="http://shop.nordstrom.com/s/dsquared2-black-wool-silk-tuxedo-pants/3721580">
7.0113363 = (MATCH) sum of: 3.2512E-4 = (MATCH) sum of: 9.385332E-5 = (MATCH) max of: 9.385332E-5 = (MATCH) weight(Title:black^10.0 in 1304968) [DefaultSimilarity], result of: 9.385332E-5 = score(doc=1304968,freq=1.0 = termFreq=1.0 ), product of: 5.975337E-5 = queryWeight, product of: 10.0 = boost 4.188475 = idf(docFreq=1263147, maxDocs=30633135) 1.426614E-6 = queryNorm 1.5706782 = fieldWeight in 1304968, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 4.188475 = idf(docFreq=1263147, maxDocs=30633135) 0.375 = fieldNorm(doc=1304968) 2.3126669E-4 = (MATCH) max of: 5.969318E-6 = (MATCH) weight(Description:pant in 1304968) [DefaultSimilarity], result of: 5.969318E-6 = score(doc=1304968,freq=2.0 = termFreq=2.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.679926 = fieldWeight in 1304968, product of: 1.4142135 = tf(freq=2.0), with freq of: 2.0 = termFreq=2.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.078125 = fieldNorm(doc=1304968) 2.3126669E-4 = (MATCH) weight(Title:pant^10.0 in 1304968) [DefaultSimilarity], result of: 2.3126669E-4 = score(doc=1304968,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 2.465579 = fieldWeight in 1304968, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.375 = fieldNorm(doc=1304968) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 1304968) [DefaultSimilarity], result of: 6.8669243 = score(doc=1304968,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 1304968, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=1304968)
</str>
<str name="http://shop.nordstrom.com/s/st-john-collection-grace-lace-pants/3624110">
7.0113215 = (MATCH) sum of: 3.1035332E-4 = (MATCH) sum of: 1.9977251E-6 = (MATCH) max of: 1.9977251E-6 = (MATCH) weight(Description:black in 476019) [DefaultSimilarity], result of: 1.9977251E-6 = score(doc=476019,freq=1.0 = termFreq=1.0 ), product of: 5.104604E-6 = queryWeight, product of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 1.426614E-6 = queryNorm 0.3913575 = fieldWeight in 476019, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 0.109375 = fieldNorm(doc=476019) 3.083556E-4 = (MATCH) max of: 5.909323E-6 = (MATCH) weight(Description:pant in 476019) [DefaultSimilarity], result of: 5.909323E-6 = score(doc=476019,freq=1.0 = termFreq=1.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.67309237 = fieldWeight in 476019, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.109375 = fieldNorm(doc=476019) 3.083556E-4 = (MATCH) weight(Title:pant^10.0 in 476019) [DefaultSimilarity], result of: 3.083556E-4 = score(doc=476019,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 3.2874389 = fieldWeight in 476019, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.5 = fieldNorm(doc=476019) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 476019) [DefaultSimilarity], result of: 6.8669243 = score(doc=476019,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 476019, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=476019)
</str>
<str name="http://shop.nordstrom.com/s/a-l-c-floral-check-crop-pants/3731246">
7.0113215 = (MATCH) sum of: 3.1035332E-4 = (MATCH) sum of: 1.9977251E-6 = (MATCH) max of: 1.9977251E-6 = (MATCH) weight(Description:black in 2038557) [DefaultSimilarity], result of: 1.9977251E-6 = score(doc=2038557,freq=1.0 = termFreq=1.0 ), product of: 5.104604E-6 = queryWeight, product of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 1.426614E-6 = queryNorm 0.3913575 = fieldWeight in 2038557, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 0.109375 = fieldNorm(doc=2038557) 3.083556E-4 = (MATCH) max of: 5.909323E-6 = (MATCH) weight(Description:pant in 2038557) [DefaultSimilarity], result of: 5.909323E-6 = score(doc=2038557,freq=1.0 = termFreq=1.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.67309237 = fieldWeight in 2038557, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.109375 = fieldNorm(doc=2038557) 3.083556E-4 = (MATCH) weight(Title:pant^10.0 in 2038557) [DefaultSimilarity], result of: 3.083556E-4 = score(doc=2038557,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 3.2874389 = fieldWeight in 2038557, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.5 = fieldNorm(doc=2038557) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 2038557) [DefaultSimilarity], result of: 6.8669243 = score(doc=2038557,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 2038557, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=2038557)
</str>
<str name="http://shop.nordstrom.com/s/two-by-vince-camuto-skinny-knit-pants/3360595">
7.0113215 = (MATCH) sum of: 3.1063872E-4 = (MATCH) sum of: 2.2831143E-6 = (MATCH) max of: 2.2831143E-6 = (MATCH) weight(Description:black in 5148249) [DefaultSimilarity], result of: 2.2831143E-6 = score(doc=5148249,freq=1.0 = termFreq=1.0 ), product of: 5.104604E-6 = queryWeight, product of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 1.426614E-6 = queryNorm 0.4472657 = fieldWeight in 5148249, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 0.125 = fieldNorm(doc=5148249) 3.083556E-4 = (MATCH) max of: 3.083556E-4 = (MATCH) weight(Title:pant^10.0 in 5148249) [DefaultSimilarity], result of: 3.083556E-4 = score(doc=5148249,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 3.2874389 = fieldWeight in 5148249, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.5 = fieldNorm(doc=5148249) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 5148249) [DefaultSimilarity], result of: 6.8669243 = score(doc=5148249,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 5148249, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=5148249)
</str>
<str name="http://shop.nordstrom.com/s/solow-ruffle-foldover-pants/3507701">
7.0113215 = (MATCH) sum of: 3.1035332E-4 = (MATCH) sum of: 1.9977251E-6 = (MATCH) max of: 1.9977251E-6 = (MATCH) weight(Description:black in 5543315) [DefaultSimilarity], result of: 1.9977251E-6 = score(doc=5543315,freq=1.0 = termFreq=1.0 ), product of: 5.104604E-6 = queryWeight, product of: 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 1.426614E-6 = queryNorm 0.3913575 = fieldWeight in 5543315, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 3.5781257 = idf(docFreq=2325549, maxDocs=30633135) 0.109375 = fieldNorm(doc=5543315) 3.083556E-4 = (MATCH) max of: 5.909323E-6 = (MATCH) weight(Description:pant in 5543315) [DefaultSimilarity], result of: 5.909323E-6 = score(doc=5543315,freq=1.0 = termFreq=1.0 ), product of: 8.779364E-6 = queryWeight, product of: 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 1.426614E-6 = queryNorm 0.67309237 = fieldWeight in 5543315, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.1539874 = idf(docFreq=176946, maxDocs=30633135) 0.109375 = fieldNorm(doc=5543315) 3.083556E-4 = (MATCH) weight(Title:pant^10.0 in 5543315) [DefaultSimilarity], result of: 3.083556E-4 = score(doc=5543315,freq=1.0 = termFreq=1.0 ), product of: 9.3798124E-5 = queryWeight, product of: 10.0 = boost 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 1.426614E-6 = queryNorm 3.2874389 = fieldWeight in 5543315, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.5748777 = idf(docFreq=116158, maxDocs=30633135) 0.5 = fieldNorm(doc=5543315) 7.011011 = (MATCH) sum of: 0.0014251873 = (MATCH) sum of: 0.0014251873 = (MATCH) MatchAllDocsQuery, product of: 0.0014251873 = queryNorm 7.009586 = (MATCH) sum of: 0.1426614 = (MATCH) MatchAllDocsQuery, product of: 0.1426614 = queryNorm 6.8669243 = (MATCH) weight(Channel:nordstrom in 5543315) [DefaultSimilarity], result of: 6.8669243 = score(doc=5543315,freq=1.0 = termFreq=1.0 ), product of: 0.9897702 = queryWeight, product of: 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 0.1426614 = queryNorm 6.9378977 = fieldWeight in 5543315, product of: 1.0 = tf(freq=1.0), with freq of: 1.0 = termFreq=1.0 6.9378977 = idf(docFreq=80796, maxDocs=30633135) 1.0 = fieldNorm(doc=5543315)
</str>
</lst>
</lst>
</response>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment