All Projects → apisearch-io → Search Server

apisearch-io / Search Server

Licence: mit
⭐️ Our core search API repository

Projects that are alternatives of or similar to Search Server

Foselasticabundle
Elasticsearch PHP integration for your Symfony project using Elastica.
Stars: ✭ 1,142 (+530.94%)
Mutual labels:  search, elasticsearch
Haystack
🔍 Haystack is an open source NLP framework that leverages Transformer models. It enables developers to implement production-ready neural search, question answering, semantic document search and summarization for a wide range of applications.
Stars: ✭ 3,409 (+1783.43%)
Mutual labels:  search, elasticsearch
Photon
an open source geocoder for openstreetmap data
Stars: ✭ 1,177 (+550.28%)
Mutual labels:  search, elasticsearch
Jkes
A search framework and multi-tenant search platform based on java, kafka, kafka connect, elasticsearch
Stars: ✭ 173 (-4.42%)
Mutual labels:  search, elasticsearch
Vue Innersearch
🔎 UI components built with Vue.js for ElasticSearch
Stars: ✭ 135 (-25.41%)
Mutual labels:  search, elasticsearch
Elasticpress
A fast and flexible search and query engine for WordPress.
Stars: ✭ 1,037 (+472.93%)
Mutual labels:  search, elasticsearch
Search
PHP search-systems made possible
Stars: ✭ 101 (-44.2%)
Mutual labels:  search, elasticsearch
Odsc 2020 nlp
Repository for ODSC talk related to Deep Learning NLP
Stars: ✭ 20 (-88.95%)
Mutual labels:  search, elasticsearch
Rated Ranking Evaluator
Search Quality Evaluation Tool for Apache Solr & Elasticsearch search-based infrastructures
Stars: ✭ 134 (-25.97%)
Mutual labels:  search, elasticsearch
Elasticsearch tutorial
An action-packed, example-based ElasticSearch tutorial
Stars: ✭ 133 (-26.52%)
Mutual labels:  search, elasticsearch
Rom Elasticsearch
Elasticsearch adapter for rom-rb
Stars: ✭ 30 (-83.43%)
Mutual labels:  search, elasticsearch
Query Translator
Query Translator is a search query translator with AST representation
Stars: ✭ 165 (-8.84%)
Mutual labels:  search, elasticsearch
Flexsearch
Next-Generation full text search library for Browser and Node.js
Stars: ✭ 8,108 (+4379.56%)
Mutual labels:  search, elasticsearch
Quicknote
QuckNote allows you to quickly create and search tens of thousands of short notes.
Stars: ✭ 54 (-70.17%)
Mutual labels:  search, elasticsearch
Moqui Elasticsearch
Moqui Tool Component for ElasticSearch useful for scalable faceted text search, and analytics and reporting using aggregations and other great features
Stars: ✭ 10 (-94.48%)
Mutual labels:  search, elasticsearch
Search Ui
Search UI. Libraries for the fast development of modern, engaging search experiences.
Stars: ✭ 1,294 (+614.92%)
Mutual labels:  search, elasticsearch
Elasticsuite
Smile ElasticSuite - Magento 2 merchandising and search engine built on ElasticSearch
Stars: ✭ 647 (+257.46%)
Mutual labels:  search, elasticsearch
Elasticsql
convert sql to elasticsearch DSL in golang(go)
Stars: ✭ 687 (+279.56%)
Mutual labels:  search, elasticsearch
Elassandra
Elassandra = Elasticsearch + Apache Cassandra
Stars: ✭ 1,610 (+789.5%)
Mutual labels:  search, elasticsearch
Elasticsearch Ruby
Ruby integrations for Elasticsearch
Stars: ✭ 1,848 (+920.99%)
Mutual labels:  search, elasticsearch

Apisearch - Server

This library is part of the Apisearch project.

CircleCI Join the Slack

Apisearch is an open source search engine fully based on open source third party technologies. The project provides an in crescendo set of language integration libraries for her users, as well as some third party projects integration bundles, plugins, or javascript widgets.

Step 1 - First of all, let's use docker to create a clean installation of the minimum requirements Apisearch server has.

Using docker-compose - Clone this repository and use docker-compose

git clone [email protected]:apisearch-io/search-server.git
de search-server
docker-compose -f docker-compose/docker-compose-basic.yml up

Using Docker - Create an elasticsearch and a server containers from the registry

docker run -d \
    --network host \
    -e "ES_JAVA_OPTS=-Xms256m -Xmx256m" \
    -e "discovery.type=single-node" \
    -e "action.auto_create_index=-apisearch*,+*" \
    docker.elastic.co/elasticsearch/elasticsearch:7.9.1
    
docker pull apisearchio/search-server:latest
docker run -d \
    --network host \
    -e "APISEARCH_GOD_TOKEN=0e4d75ba-c640-44c1-a745-06ee51db4e93" \
    -e "APISEARCH_HEALTH_CHECK_TOKEN=6326d504-0a5f-f1ae-7344-8e70b75fcde9" \
    -e "APISEARCH_ENABLED_PLUGINS=elasticsearch" \
    -e "ELASTICSEARCH_HOST=localhost" \
    apisearchio/search-server:latest

Step 2 - Check the Server health

curl "http://localhost:8000/health" \
    -H "Apisearch-Token-Id: 6326d504-0a5f-f1ae-7344-8e70b75fcde9"

Some first steps for you!

or

Take a tour using these links.

...and remember give us a star on Github! The more stars we have, the further we'll arrive.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].