Socket
Socket
Sign inDemoInstall

sider

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sider

An inverted index search in node based on Redis. If you want a text search, but you don't yet need the power of lucene or solr.


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
359 kB
Created
Weekly downloads
 

Readme

Source

Sider

An inverted index search in node based on Redis. If you want a text search, but you don't yet need the power of lucene or solr.

Simple api

Indexing an object:

var indexer = new sider.Indexer();
indexer.store({
	id:2,
	x:"This is some rad index",
	y:123
});

Search:

var searcher = new sider.Searcher();
searcher.getIds('this rad',function(results) {
	// do something with your ids	
});

FAQs

Last updated on 09 May 2013

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc