solr integration in magento enterprise

19

Upload: tobias-zander

Post on 26-Jun-2015

1.424 views

Category:

Technology


2 download

TRANSCRIPT

Page 1: Solr integration in Magento Enterprise
Page 2: Solr integration in Magento Enterprise
Page 3: Solr integration in Magento Enterprise
Page 4: Solr integration in Magento Enterprise
Page 5: Solr integration in Magento Enterprise

wget http://archive.apache.org/dist/lucene/solr/3.6.2/apache-solr-3.6.2.tgz tar -xvf apache-solr-3.6.2.tgz cd solr-install-dir/example/solr/conf cp -R magento-install-dir/lib/Apache/Solr/conf/* . java -jar solr-install-dir/example/start.jar

Page 6: Solr integration in Magento Enterprise
Page 7: Solr integration in Magento Enterprise
Page 8: Solr integration in Magento Enterprise

<response> <lst name="responseHeader"> <int name="status">0</int> <int name="QTime">13</int> </lst> <lst name="index"> <int name="numDocs">27</int> <int name="maxDoc">27</int> <int name="numTerms">82</int> <long name="version">1359624631453</long> <int name="segmentCount">1</int> <bool name="current">true</bool> <bool name="hasDeletions">false</bool> <str name="directory">[…]</str> <date name="lastModified">2013-02-06T09:43:59.904Z</date> </lst> <lst name="fields"> <lst name="id"> <str name="type">string</str> <int name="distinct">27</int> …

Page 9: Solr integration in Magento Enterprise
Page 10: Solr integration in Magento Enterprise
Page 11: Solr integration in Magento Enterprise
Page 12: Solr integration in Magento Enterprise

{ "responseHeader":{[...]}, "response":{ "numFound":1, "docs":[ {"id":"1168"} ] } }

Page 13: Solr integration in Magento Enterprise

<solr persistent="false"> <cores adminPath="/admin/cores"> <core name="shopfoo" instanceDir="cores/shopfoo"> <property name="dataDir" value="cores/shopfoo/data" /> </core> <core name="shopbar" instanceDir="cores/shopbar"> <property name="dataDir" value="cores/shopbar/data" /> </core> </cores> </solr>

Page 14: Solr integration in Magento Enterprise
Page 15: Solr integration in Magento Enterprise
Page 16: Solr integration in Magento Enterprise
Page 17: Solr integration in Magento Enterprise
Page 18: Solr integration in Magento Enterprise
Page 19: Solr integration in Magento Enterprise