Coder Social home page Coder Social logo

ronaldofreitas / manticoresearch Goto Github PK

View Code? Open in Web Editor NEW

This project forked from manticoresoftware/manticoresearch

0.0 0.0 0.0 34.75 MB

Database for search

Home Page: https://manticoresearch.com/

License: GNU General Public License v2.0

CMake 2.74% Makefile 0.03% Java 0.65% Batchfile 0.01% Shell 0.17% C 6.65% Ruby 0.81% PHP 2.69% Smarty 0.01% Python 0.65% Perl 0.01% C++ 71.34% Yacc 1.00% Lex 0.28% C# 0.01% HTML 12.83% Dockerfile 0.02% XSLT 0.09%

manticoresearch's Introduction

Manicore Search Logo

Manticore Search 3.5.4

WebsiteDownloadsDocsCoursesForumChatTwitter

 

Introduction

Manticore Search is a database designed specifically for search, including full-text search. What differs it from other solutions is:

  • Powerful and fast full-text searching which works fine for small and big datasets
  • SQL-first: the native Manticore's syntax is SQL. It speaks SQL over HTTP and MySQL protocol (you can use your preferred mysql client)
  • JSON over HTTP: to provide more programmatic way to manage your data and schemas Manticore provides HTTP JSON protocol. Very similar to the one from Elasticsearch
  • Written fully in C++: starts fast, doesn't take much RAM, low-level optimizations give good performance
  • Real-time inserts: after INSERT is made the document can be read immediately
  • Interactive courses for easier learning
  • Built-in replication and load balancing
  • Can sync from MySQL/PostgreSQL/ODBC/xml/csv out of the box
  • Not fully ACID-compliant, but supports transactions and binlog for safe writes

Craigslist, Socialgist, PubChem and many others use Manticore for efficient searching and stream filtering.

Manticore Search was forked from Sphinx 2.3.2 in 2017.

More features

Installation

Docker

Docker image is available on Docker Hub.

To play with Manticore Search in Docker just run:

docker run --name manticore --rm -d manticoresearch/manticore && docker exec -it manticore mysql -w && docker stop manticore

You can then: create an index, add data and run searches. For example:

create table movies(title text, year int) morphology='stem_en' html_strip='1' stopwords='en';

insert into movies(title, year) values ('The Seven Samurai', 1954), ('Bonnie and Clyde', 1954), ('Reservoir Dogs', 1992), ('Airplane!', 1980), ('Raging Bull', 1980), ('Groundhog Day', 1993), ('<a href="http://google.com/">Jurassic Park</a>', 1993), ('Ferris Bueller\'s Day Off', 1986);

select highlight(), year from movies where match('the dog');

select highlight(), year from movies where match('days') facet year;

select * from movies where match('google');

When you exit from the mysql client it stops and removes the container, so use this way only for testing / sandboxing purposes.

Read the full instruction for the docker image for more details including our recommendations on running it in production.

Packages

YUM repo for RHEL/Centos

sudo yum install https://repo.manticoresearch.com/manticore-repo.noarch.rpm
sudo yum install manticore

APT repo for Ubuntu/Debian

wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
sudo dpkg -i manticore-repo.noarch.deb
sudo apt update
sudo apt install manticore

Homebrew on MacOS

brew install manticoresearch

Windows

See instruction here.

MacOS .dmg

See instruction here.

Documentation and community channels

How we can support you

Should your company require any help - we provide full-cycle services in the areas of Sphinx and Manticore Search:

  • Audit
  • Support
  • Consulting
  • Development
  • Training

More details here

❤️ How you can support Manticore Search

Manticore Search is a GPLv2-licensed open source project with development made possible by support from our core team, contributors, and sponsors. Building premium open-source software is not easy. If you would like to make sure Manticore Search stays free here is how you can help the project:

Analytics

manticoresearch's People

Contributors

klirichek avatar tomatolog avatar adriannuta avatar glookka avatar manticoresearch avatar yschapov avatar djklim87 avatar shodanium avatar sanikolaev avatar githubmanticore avatar yukron avatar vitalii-shulha avatar abhijo89 avatar alpha0010 avatar volkov-am avatar denji avatar fil avatar genkaok avatar martyix avatar yorwba avatar barryhunter avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.