Quick Start
This guide explains how to set up the Hyperspace database in minutes.
1. Install the Hyperspace API Client
pip install hyperspace-pynpm install https://github.com/hyper-space-io/hyperspace-js2. Create a local instance of the Hyperspace client
hyperspace_client = hyperspace.HyperspaceClientApi(host=host_address,
username=username,
password=password)import io.hyperspace.client.HyperspaceClient;
HyperspaceClient client = new HyperspaceClient(host, username, password);const hs = require('hyperspace-js')
const hyperspaceClient = new hs.HyperspaceClient(host, username, password)3. Run Hyperspace queries
Create a schema file
Create a collection
Upload Data
Build and run a query (Python only)
To set a hybrid or lexical search query –
To run a hybrid or lexical search query –
To run a lexical search query in DSL syntax–
To run a lexical search query in DSL syntax–
Last updated