#Search
The search subsystem for Blockstack Core creates an index for data associated with registered names in namespaces and makes that data searchable.
The search subsystem is currently meant to index the .id namespace but can be easily expanded to include other namespaces.
Currently there are two types of indexes to handle search queries:
- Substring search on usernames, full names, twitter_handle (powered by MongoDB)
- Raw Lucene index which handles searching extended data e.g., bio.
Search will currently return upto a max of 20 results (can be less depending on the query) with data that follows structure of blockstack IDs:
Installation
- Step 1: First, make sure you have virtualenv installed. Then, setup the search subsystem:
$ sudo apt-get install -y mongodb memcached python-dev libmemcached-dev zlib1g-dev nginx
$ sudo service memcached start
$ sudo service mongodb start
$ sudo pip install uwsgi
$ virtualenv search
$ git clone https://github.com/blockstack/blockstack-core.git
$ cd blockstack-core/
$ git checkout search
$ cd api/search/
$ mkdir data
$ pip install -r requirements.txt
$ python runserver.py
-
Step 2: Make sure you have Blockstack Core running locally (see instructions). We highly recommend using a local node because the search subsystem issues thousands of calls to Blockstack Core for re-indexing and remote nodes can slow down performance.
-
Step 3: Fetch the data for the .id namespace and respective profiles:
$ python -m search.fetch_data --fetch_namespace
$ python -m search.fetch_data --fetch_profiles
- Step 4: Create the search index:
python -m search.basic_index --refresh
Usage
You can quickly test the search index from the command line:
python -m search.substring_search --search_name "Fred Wil"
python -m search.substring_search --search_twitter fredwil
You can also use the search API end-point:
curl -G {machine_ip}:port/search/name -d "query=muneeb"
Sample Response:
{
"people": [
{
"profile": {
"website": [
{
"url": "http://muneebali.com",
"@type": "WebSite"
}
],
"name": "Muneeb Ali",
"address": {
"addressLocality": "New York, NY",
"@type": "PostalAddress"
},
"image": [
{
"contentUrl": "https://s3.amazonaws.com/dx3/muneeb",
"@type": "ImageObject",
"name": "cover"
},
{
"contentUrl": "https://s3.amazonaws.com/kd4/muneeb",
"@type": "ImageObject",
"name": "avatar"
}
],
"@type": "Person",
"description": "Co-founder of Blockstack. Interested in distributed systems and blockchains. Previously, PhD at Princeton."
},
"username": "muneeb"
},
{
"profile": {
"message": "This blockchain ID is reserved for Muneeb Ali. If this is you, please email support@onename.com to claim it for free.",
"status": "reserved"
},
"username": "muneebali"
},
{
"profile": {
"cover": {
"url": "https://s3.amazonaws.com/97p/HHE.jpg"
},
"v": "0.2"
},
"username": "muneebali1"
}
]
}