使用SolrJ创建EnumType Solr

时间:2017-11-15 12:59:30

标签: solr solrj

我需要创建一个包含少量枚举的模式。我试图用SolrJ做到这一点。 我找到了这个链接DefininganEnumFieldinschema,但我找不到使用Schema API或SolrJ的任何示例。

这是我的枚举:

public enum Attributes {
    SPONSORED("sponsored"),

    TOP_RATED("top-rated"),

    GENERIC("generic"),

    PROMOTION("promotion"),

    QUICK_ORDER("quick-order");

    private String value;

    Attributes(String value) {
        this.value = value;
    }

    @Override
    @JsonValue
    public String toString() {
        return String.valueOf(value);
    }

    @JsonCreator
    public static Attributes fromValue(String text) {
        for (Attributes b : Attributes.values()) {
            if (String.valueOf(b.value).equals(text)) {
                return b;
            }
        }
        return null;
    }
}

我想使用SolrJ在我的架构中添加一个字段:

Map<String, Object> fieldAttributes = new LinkedHashMap<>();
    fieldAttributes.put("name", "address.**attributes**");
    fieldAttributes.put("type", "**attributesEnum**");
    fieldAttributes.put("stored", true);
    SchemaRequest.AddField addFieldRequest = new SchemaRequest.AddField(fieldAttributes);

    addFieldRequest.process(client);

1 个答案:

答案 0 :(得分:1)

首先,您需要在架构中指定枚举字段,如文档中所示:

<fieldType name="myEnumField" class="solr.EnumField" enumsConfig="enumsConfig.xml" enumName="attribute"/>

在enumsConfig.xml中,您将指定所有枚举值,例如:

<?xml version="1.0" ?>
<enumsConfig>
  <enum name="attribute">
    <value>sponsored</value>
    <value>generic</value>
  </enum>
</enumsConfig>

或者,您可以通过Schema API动态创建此fieldType,如下所示:

curl -X POST -H 'Content-type:application/json' --data-binary '{
  "add-field-type" : {
     "name":"myEnumField",
     "class":"solr.EnumField",
     "enumsConfig":"enumsConfig.xml",
     "enumName" : "attribute"}
}' http://localhost:8983/solr/demo/schema

您也可以 SolrJ 方式执行此操作,使用org.apache.solr.client.solrj.request.schema.SchemaRequest.AddFieldType,您需要指定FieldTypeDefinition,方法setAttributes(Map<String,Object> attributes)将会有所帮助