<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.solr.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.solr.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.solr.php',
    1 => 'Solr',
  ),
  'prev' => 
  array (
    0 => 'book.solr.php',
    1 => 'Solr',
  ),
  'next' => 
  array (
    0 => 'solr.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/solr/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.solr" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   The Solr extension allows you to communicate effectively with the Apache Solr Server in PHP.
  </p>
  
  <p class="para">The Solr extension is an extremely fast, light-weight, feature-rich library that allows PHP developers to communicate effectively with Solr server instances.</p>
  <p class="para">Versions 1.x of The PECL Extension supports Apache Solr Server 1.3-3.x</p>
  <p class="para">Versions 2.x of The PECL Extension supports Apache Solr Server 4.0+ </p>
  <p class="para">There are built-in tools to add documents and make updates to the solr server.</p>
  <p class="para">It also contains tools that allows you to build advanced queries to the server when searching for documents.</p>
 </div><?php manual_footer($setup); ?>