fortune-elastic-adapter

0.3.2 • Public • Published

Fortune ElasticSearch adapter

This is an ElasticSearch adapter for Fortune.js.

Features

  • uses official elasticsearch client
  • Buffer fields are saved as non indexed arrays in ElasticSearch
$ npm install fortune-elastic-adapter

Usage

This adapter works in Node.js only:

const fortune = require('fortune')
const elasticAdapter = require('fortune-elastic-adapter')

const store = fortune(recordTypes, {
  adapter: [ elasticAdapter, {
    /**
     * ElasticSearch adapter. Available options:
     *
     * - `hosts`:       ElasticSearch hosts array. Default: `["http://localhost:9200"]`.
     * - `index`:       Name of the ElasticSearch index. Default: `fortune`.
     * - `log`:         Log level. One of: `debug`, `trace`, `error`, `warning`. Default: `error`.
     * - `apiVersion`:  ElasticSearch API version. Default: `2.4`.
     */
    hosts: ["http://localhost:9200"]
  } ]
})

For full list of options read the official elasticsearch client configuration options

License

This software is licensed under the MIT license.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i fortune-elastic-adapter

    Weekly Downloads

    2

    Version

    0.3.2

    License

    MIT

    Unpacked Size

    25 kB

    Total Files

    3

    Last publish

    Collaborators

    • sjovanovic