New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

elasticsearch-cacheable

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elasticsearch-cacheable

Cache elasticsearch search queries in redis

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

node-elasticsearch-cacheable

Modifies the official elasticsearch-js client to add caching in redis. In my tests its been anywhere from 12% to 4% of a response from elasticsearch.

##Getting Started Install:

npm install elasticsearch-cacheable

Create an elasticsearch client, mutate it with this module and use away:

var esClient = require('elasticsearch').Client();
require('./elasticsearch-cacheable')(esClient);

esClient.search({
  ...
}, function (err, results) {
  ...
});

##Options When mutating, there is a default config as such:

{
  redisPort: 6379,
  redisHost: '127.0.0.1',
  redisDatabase: 0,
  cacheTime: 5 //seconds
}

Which is changed like so:

var esClient = require('elasticsearch').Client();
require('./elasticsearch-cacheable')(esClient, {
  redisHost: '10.10.10.10',
  cacheTime: 3
});

Also any time you wish to bust the cache and force a search against elasticsearch, just add noCache: true to the search parameters:

esClient.search({
  index: '*',
  type: 'foo',
  noCache: true,
  body: {
    "query": {
      ...
  }
}, function (err, results) {
  ...
}

Keywords

elasticsearch

FAQs

Package last updated on 16 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts