Solr:我如何在solr中实现定时折扣可用性

时间:2011-04-02 23:29:04

标签: solr

我正在尝试将solr用于书店网站。

每本书都有价格但有时会打折。折扣价格在规定的时间段内存在,但可能有许多折扣期。每个折扣都有简要的概要,开始和结束时间。

所需输出的子集如下:

.......
"response":{"numFound":1,"start":0,"docs":[
  {
    "name":"The Book",
    "price":"$9.99",
    "discounts":[
        {
         "price":"$3.00",
         "synopsis":"thanksgiving special",
         "starts":"11-24-2011",
         "ends":"11-25-2011",
        },
        {
         "price":"$4.00",
         "synopsis":"Canadian thanksgiving special",
         "starts":"10-10-2011",
         "ends":"10-11-2011",
        },
     ] 
  },
  .........

要求是能够搜索打折的出版物。我想我可以使用日期分面(返回折扣窗口内的出版物)。执行折扣搜索时,不会返回当前未打折的出版物。

我的问题是:

  • solr是否支持此类子文档

在上面的示例中,折扣是子文档。我知道solr不是关系数据库,但我想在可能的情况下将上述表示存储(并索引)到单个文档中。

  • 解决上述问题的最佳方法是什么

我可以在很多例子中看到作者倾向于非规范化来解决类似的问题。这表明,对于每个折扣,我都需要复制图书数据或形成document association。你会建议哪种方法?

如果solr可以返回如上所述的响应,那将是很好的。

非常感谢

1 个答案:

答案 0 :(得分:0)

你可以通过使用Solr的动态字段来获得足够接近的东西:

.......
"response":{"numFound":1,"start":0,"docs":[
  {
    "name":"The Book",
    "price":"$9.99",
    "discount_1_price":"$3.00",
    "discount_1_synopsis":"thanksgiving special",
    "discount_1_starts":"11-24-2011",
    "discount_1_ends":"11-25-2011",
    "discount_2_price":"$4.00",
    "discount_2_synopsis":"Canadian thanksgiving special",
    "discount_2_starts":"10-10-2011",
    "discount_2_ends":"10-11-2011",
  },
  ........