承接 silverstripe/silverstripe-search-service-elastic 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

silverstripe/silverstripe-search-service-elastic

最新稳定版本:1.1.0

Composer 安装命令:

composer require silverstripe/silverstripe-search-service-elastic

包简介

Provide Elastic Enterprise Search Functionality to Silverstripe Search Service

README 文档

README

Elastic Service provider for Silverstripe Search Service.

This module uses Elastic's Enterprise Search PHP library to provide the ability to index content for an Elastic App Search engine. This module does not provide any method for performing searches on your engines - we've added some suggestions though.

Requirements

  • php: ^8.1
  • silverstripe/framework: ^5
  • silverstripe/silverstripe-search-service: ^3
  • elastic/enterprise-search: ^8.3
  • guzzlehttp/guzzle: ^7

Installation

composer require silverstripe/silverstripe-search-service-elastic

Activating EnterpriseSearch

To start using EnterpriseSearch, define environment variables containing your private API key, endpoint, and prefix.

ENTERPRISE_SEARCH_ENDPOINT="https://abc123.app-search.ap-southeast-2.aws.found.io"
ENTERPRISE_SEARCH_API_KEY="private-abc123"
ENTERPRISE_SEARCH_ENGINE_PREFIX="value-excluding-index-name"
SEARCH_DASHBOARD_URL="https://abc123.app-search.kb-southeast-2.aws.found.io"

Elastic enterprise search dashboard URL(SEARCH_DASHBOARD_URL). If this matches the ENTERPRISE_SEARCH_ENDPOINT, there's no need to define it. It will automatically fall back to the value of the ENTERPRISE_SEARCH_ENDPOINT environment variable.

Configuring EnterpriseSearch

The most notable configuration surface for EnterpriseSearch is the schema, which determines how data is stored in your EnterpriseSearch index (engine). There are four types of data in EnterpriseSearch:

  • text (default)
  • date
  • number
  • geolocation

You can specify these data types in the options node of your fields.

SilverStripe\SearchService\Service\IndexConfiguration:
  indexes:
    myindex:
      includeClasses:
        SilverStripe\CMS\Model\SiteTree:
          fields:
            title: true
            summary_field:
              property: SummaryField
              options:
                type: text

Note: Be careful about whimsically changing your schema. EnterpriseSearch may need to be fully reindexed if you change the data type of a field.

Additional documentation

Majority of documentation is provided by the Silverstripe Search Service module. A couple in particular that might be useful to you are:

Searching

Elastic themselves provide a headless Search UI JS library, which can be used with vanilla JS or any framework like React, Vue, etc.

There are two main libraries:

If you are using React, then there is also @elastic/react-search-ui, which provides interface components.

If you are not using React, then the creation of the view will be up to you.

统计信息

  • 总下载量: 11.48k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 6
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2023-03-06