首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Solr -突出显示

Solr -突出显示
EN

Stack Overflow用户
提问于 2015-11-08 02:53:47
回答 1查看 76关注 0票数 0

我正在尝试突出显示文档中的一个术语,其中包含一个特别的“细胞因子”。在文档中有该单词的几个实例。我试过这样做:

代码语言:javascript
复制
http://localhost:8983/solr/Cytokine/select?q=cytokine&hl=true&hl.fl=content

在我得到的结果中:

代码语言:javascript
复制
<response>
<lst name="responseHeader">
<int name="status">0</int>
<int name="QTime">1</int>
<lst name="params">
<str name="q">cytokine</str>
<str name="hl">true</str>
<str name="hl.fl">content</str>
</lst>
</lst>
<result name="response" numFound="1" start="0">
<doc>
<arr name="title">
<str>
High Glucose Increases the Expression of Inflammatory Cytokine Genes in Macrophages Through H3K9 Methyltransferase Mechanism
</str>
</arr>
<arr name="content">
<str>
Recent studies ... SNIP ...in macrophages.
</str>
</arr>
<str name="id">c656ee36-bab5-4204-975d-80c720b50ec0</str>
<long name="_version_">1517203104151371776</long>
</doc>
</result>
<lst name="highlighting">
<lst name="c656ee36-bab5-4204-975d-80c720b50ec0"/>
</lst>
</response>

以下是文档:

代码语言:javascript
复制
{"title":"High Glucose Increases the Expression of Inflammatory Cytokine Genes in
Macrophages Through H3K9 Methyltransferase Mechanism","content":"Recent studies suggest that histone modification is one of the mechanisms
regulating inflammatory cytokine gene expression in hyperglycemic conditions.
However, it remains unknown how histone methylation is initiated and involved in 
changes of inflammatory cytokine gene expression under high glucose (HG)
conditions. Our aim was to investigate whether H3K9 methylation was involved in
HG-induced expression of inflammatory cytokines in macrophages. Expression
profile of cytokine genes under hyperglycemia in THP-1-derived macrophages was
determined by human cytokine antibody array. Based on the results from the human 
cytokine antibody array analyses, the H3K9me3 levels of 4 inflammatory cytokine
genes, including interleukin-6 (IL-6), IL-12p40, macrophage inflammatory
protein-1α (MIP-1α), and MIP-1β under HG were determined by ChIP assays.
Furthermore, the expression of these 4 inflammatory cytokine genes under either
HG or chaetocin (an inhibitor of SUV39H1 methyltransferase) exposure or
overexpression of SUV39H1 (a H3K9me3-specific methyltransferase) was analyzed by 
quantitative polymerase chain reaction. Macrophages cultured in HG conditions
showed increased gene expression and decreased H3K9me3 levels of inflammatory
cytokine genes compared with macrophages incubated in normal glucose (NG)
culture. Inhibition of SUV39H1 with chaetocin in NG-treated macrophages also
increased the expression of IL-6, IL-12p40, MIP-1α, and MIP-1β. Furthermore,
inhibition of SUV39H1 with chaetocin in HG-treated macrophages further increased 
the expression of these inflammatory cytokines. Contrarily, NG-treated
macrophages transfected with SUV39H1 plasmids show decreased expression of
inflammatory cytokines. Furthermore, overexpression of SUV39H1 in HG-treated
macrophages alleviated the expression of inflammatory cytokines under HG
conditions. Finally, HG also increases the expression of inflammation cytokines
in mouse bone marrow-derived macrophages. Our data demonstrated that HG increases
the expression of inflammatory cytokines in macrophages through decreased H3K9me3
levels, which was partly mediated by SUV39H1. Dysregulation of epigenetic histone
modification may be one of the underlying mechanisms for HG-induced inflammatory 
cytokine expression in macrophages."}

我做错了什么?

EN

回答 1

Stack Overflow用户

发布于 2015-11-08 10:38:11

好的,显然它必须是一个被标记化的字段,比如textfield,它必须被存储。下面是一个示例:

代码语言:javascript
复制
<fieldType name="stringTokenized" class="solr.TextField" sortMissingLast="true">
    <analyzer>
      <tokenizer class="solr.WhitespaceTokenizerFactory"/>
    </analyzer>
  </fieldType>
  <field name="Title" type="stringTokenized" stored="true"/>

我的字段没有被存储。完成此操作后,我可以查看代码片段

这里有一个有用的链接:Why is this simple Solr highlighting attempt failing?

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/33586533

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档