使用DIH(mysql)

时间:2016-06-22 10:35:03

标签: solr schema dih solr6

这是我的数据表结构,我想用solr索引我的数据 所以我使用solr6 DIH用mysql dataSource索引数据,那么如何以下列格式索引表数据呢。

   ---------------------------------------
   | id | name | en  | hi   | sp         |
   ---------------------------------------
   | 1  | test | test| परीक्षण | prueba     |
   ---------------------------------------
   | 2  | test1 | test1| परीक्षण1 | prueba1 |
   ---------------------------------------

   {
    id:1,
    name:test,
    trans{
      en:test,
      hi:परीक्षण,
      sp:prueba,
    }
  }
  {
   id:2,
   name:test1,
   trans{
    en:test1,
    hi:परीक्षण1,
    sp:prueba1,
   }
  }

0 个答案:

没有答案