Creating a local distributed index

A distributed index in Manticore Search doesn't hold any data. Instead it acts as a 'master node' to proxy the demanded query to other indexes and provide merged results from the responses it receives from the 'node' indexes. A distributed index can connect to local indexes or indexes located on other servers. The simplest example of a distributed index looks so:

‹›
  • Configuration file
  • RT mode
  • PHP
  • Python
  • javascript
  • Java
📋
index index_dist {
  type  = distributed
  local = index1
  local = index2
  ...
 }