我有一项独特的任务,我已经完成了,我处于最后一段,但这个子任务证明是非常困难的!所以你有背景:我们运行Magento站点,并使用自定义构建的SOLR搜索页面。我正在使用phpSolrClient来解析Solr XML并返回可用的结果,然后我从中构建搜索结果页面。
我给出的任务是在Magento的后端有一个“属性”,让我们称之为“search_tags”。目标是能够插入标记,并用逗号分隔它的重量:
即sight^2,hearing^1,smell^3
我想在Magento的全文重构索引中编辑代码以分解字符串,并将该标记X插入fulltext1_en
字段。所以它会增加两次“视觉”,一次“听”,三次“闻”。这将允许我们说,当有人搜索榨汁机时,在页面上放置一个搅拌器,即使“fullic1”或“果汁”这个词没有出现在fulltext1_en字符串中。我已经开发了拉,拆分和迭代的代码......但是我处于静止状态,因为我不知道要编辑哪些代码以在reindex过程中将其包含在我的fulltext1_en中。如果有任何人有编辑Magento的全文重新索引的经验,您的输入将不胜感激!我查看了Indexer.php,但该文件中的所有内容最多都是模棱两可的,所以这没有用!得爱Magento!
答案 0 :(得分:1)
对于那些希望改变并使用SOLR在Magento中为自定义搜索提供“加权标签”的人来说还可以,我整夜都这样做了,但它确实有效......
首先,在Magento中创建一个过滤器并将其应用于所有产品。我将我的名字命名为“search_tags”。
接下来,在该过滤器中对测试项使用以下公式:
dude^25,crazyman^25,wierdsearch^25
每个单词后跟一个克拉,然后是你要给它的重量。 (这是重复单词的次数,然后添加到fulltext1_en。)
完成后,打开以下文件:
/app/code/core/Mage/CatalogSearch/Model/Mysql4/Fulltext.php
我知道它说MySQL4,不注意,SOLR使用这个索引。
关于第500行,您将看到以下块:
if ($selects) {
$select = '('.join(')UNION(', $selects).')';
$query = $this->_getWriteAdapter()->query($select);
while ($row = $query->fetch()) {
下面这个块下面插入以下内容:
注意:请勿使用我在此处列出的属性ID,这是我的设置所特有的。您将不得不搜索您的数据库以查找此ID。我使用JOIN与eav_attributes
加入catalog_product_entity_varchar
并使用SELECT查找attribut_id
和value
WHERE entity_id =(在此处插入您的商品ID)。这是一种痛苦,但这是唯一的方法。这将返回该产品的所有属性。寻找具有我们之前输入的标签的那个,并获取它的ID。将其插入下面的代码中。
$attr_val = $row['value']; // Set attr_val so that it can be manipulated in following IF
if ($row['attribute_id'] == 457) { // 457 is the ID of MY search_tags filter, yours WILL be different! It can be found by joining eav_attributes table and catalog_product_entity_varchar and searching for the attribute value and ID where entity_id is X
$input = $row['value']; // Set $input to value of filter
$attr_val = ""; // Create Emtpy string
$pieces = explode( ',', $input ); // Explode filter by comma
foreach ($pieces as $val){
$i=1;
$val = explode( '^', $val); // Explode each "tag" by carat
while ($i <= $val[1]) { // Loop while $i is less than or equal to the number on the right side of the carat
$i++;
$attr_val = $attr_val . " " . $val[0]; // Append $attr_val with the word to the right side of the carat
}
}
}
$result[$row['entity_id']][$row['attribute_id']] = $attr_val; // Modified from Original
插入后...然后注释掉下面的块。
$result[$row['entity_id']][$row['attribute_id']] = $row['value']; // ORIGINAL BLOCK -- UNCOMMENT -- DO NOT DELETE
现在运行全文重新索引,你的fulltext1_en应该显示你已经25次添加了“dude”,“crazyman”和“weirdsearch”!索引完成后,搜索站点搜索中的任何标记:添加标记的项目应显示在靠近的位置(如果不是顶部)。请享用!