我有两个MySQL表book
和author
,他们有many-to-many
关系,通过book_author_mapper
完成,其行包含book_id
/ {列{1}}。
在Solr中,我有一个查询来获取图书清单,我需要为每本书获得一本author_id
的图书。
目前,我正在考虑使用多值字段来存储图书ID。
我的问题是:
author_id
列表,而且每个author_id
都要author_name
,那可能吗?答案 0 :(得分:1)
查看doc&谷歌搜索,我有点解决了这个问题。
<?xml version="1.0" encoding="UTF-8" ?>
<dataConfig>
<dataSource type="JdbcDataSource" driver="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/test?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull" user="root"
password="123456" />
<document>
<entity name="book" pk="id"
query="SELECT * FROM book where status = 0 limit 200000;"
deltaImportQuery="SELECT * FROM book where status = 0 and id='${dih.delta.id}' limit 200000;"
deltaQuery="select id from book where status = 0 and CONVERT_TZ(`update_date`, @@session.time_zone, '+00:00') > '${dih.last_index_time}'"
>
<entity name="author"
query="SELECT au.cn_name as author_cn_name FROM author AS au JOIN book_author_map AS bam ON au.id = bam.author_id WHERE bam.book_id = ${book.id} limit 10;"
>
<field name="authors" column="author_cn_name" />
</entity>
</entity>
</document>
</dataConfig>
<field name="cn_name" type="textComplex" indexed="true" stored="true" />
<field name="en_name" type="textComplex" indexed="true" stored="true" />
<field name="status" type="int" indexed="true" stored="true" />
<field name="authors" type="textComplex" indexed="true" stored="true" multiValued="true" />
parentDeltaQuery
它获得了父实体的pk,但是当它被调用时,它是做什么的?这有必要吗?deltaQuery
和parentDeltaQuery
吗?