npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

valkey-search

v0.0.1

Published

This package provides support for the [ValkeySearch](https://valkeyearch.io) module, which adds indexing and querying support for data stored in Valkey Hashes or as JSON documents with the ValkeyJSON module. It extends the [Node Valkey client](https://gi

Downloads

198

Readme

valkey-search

This package provides support for the ValkeySearch module, which adds indexing and querying support for data stored in Valkey Hashes or as JSON documents with the ValkeyJSON module. It extends the Node Valkey client to include functions for each of the ValkeySearch commands.

To use these extra commands, your Valkey server must have the ValkeySearch module installed. To index and query JSON documents, you'll also need to add the ValkeyJSON module.

Usage

For complete examples, see search-hashes.js and search-json.js in the Node Valkey examples folder.

Indexing and Querying Data in Valkey Hashes

Creating an Index

Before we can perform any searches, we need to tell ValkeySearch how to index our data, and which Valkey keys to find that data in. The FT.CREATE command creates a ValkeySearch index. Here's how to use it to create an index we'll call idx:animals where we want to index hashes containing name, species and age fields, and whose key names in Valkey begin with the prefix nodevalkey:animals:

await client.ft.create('idx:animals', {
  name: {
    type: SchemaFieldTypes.TEXT,
    SORTABLE: true
  },
  species: SchemaFieldTypes.TAG,
  age: SchemaFieldTypes.NUMERIC
}, {
  ON: 'HASH',
  PREFIX: 'nodevalkey:animals'
});

See the FT.CREATE documentation for information about the different field types and additional options.

Querying the Index

Once we've created an index, and added some data to Valkey hashes whose keys begin with the prefix nodevalkey:animals, we can start writing some search queries. ValkeySearch supports a rich query syntax for full-text search, faceted search, aggregation and more. Check out the FT.SEARCH documentation and the query syntax reference for more information.

Let's write a query to find all the animals where the species field has the value dog:

const results = await client.ft.search('idx:animals', '@species:{dog}');

results looks like this:

{
  total: 2,
  documents: [
    {
      id: 'nodevalkey:animals:4',
      value: {
        name: 'Fido',
        species: 'dog',
        age: '7'
      }
    },
    {
      id: 'nodevalkey:animals:3',
      value: {
        name: 'Rover',
        species: 'dog',
        age: '9'
      }
    }
  ]
}

Indexing and Querying Data with ValkeyJSON

ValkeySearch can also index and query JSON documents stored in Valkey using the ValkeyJSON module. The approach is similar to that for indexing and searching data in hashes, but we can now use JSON Path like syntax and the data no longer has to be flat name/value pairs - it can contain nested objects and arrays.

Creating an Index

As before, we create an index with the FT.CREATE command, this time specifying we want to index JSON documents that look like this:

{
  name: 'Alice',
  age: 32,
  coins: 100
}

Each document represents a user in some system, and users have name, age and coins properties.

One way we might choose to index these documents is as follows:

await client.ft.create('idx:users', {
  '$.name': {
    type: SchemaFieldTypes.TEXT,
    SORTABLE: 'UNF'
  },
  '$.age': {
    type: SchemaFieldTypes.NUMERIC,
    AS: 'age'
  },
  '$.coins': {
    type: SchemaFieldTypes.NUMERIC,
    AS: 'coins'
  }
}, {
  ON: 'JSON',
  PREFIX: 'nodevalkey:users'
});

Note that we're using JSON Path to specify where the fields to index are in our JSON documents, and the AS clause to define a name/alias for each field. We'll use these when writing queries.

Querying the Index

Now we have an index and some data stored as JSON documents in Valkey (see the JSON package documentation for examples of how to store JSON), we can write some queries...

We'll use the ValkeySearch query language and FT.SEARCH command. Here's a query to find users under the age of 30:

await client.ft.search('idx:users', '@age:[0 30]');