mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-09 16:51:34 +08:00
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Search
|
|
~~~~~
|
|
|
|
copyright: (c) 2014-2016 by Halfmoon Labs, Inc.
|
|
copyright: (c) 2016 by Blockstack.org
|
|
|
|
This file is part of Search.
|
|
|
|
Search is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Search is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Search. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
from pymongo import MongoClient
|
|
|
|
client = MongoClient()
|
|
search_db = client['search_db']
|
|
search_cache = client['search_cache']
|
|
|
|
namespace = search_db.namespace
|
|
profile_data = search_db.profile_data
|
|
|
|
# these are used by substring_search
|
|
search_profiles = search_db.profiles
|
|
people_cache = search_cache.people_cache
|
|
twitter_cache = search_cache.twitter_cache
|
|
username_cache = search_cache.username_cache
|
|
proofs_cache = search_cache.proofs_cache
|
|
|
|
# these are used by attribute_search
|
|
twitter_index = search_db.twitter_index
|
|
facebook_index = search_db.facebook_index
|
|
github_index = search_db.github_index
|
|
domain_index = search_db.domain_index
|
|
payment_index = search_db.payment_index
|