Skip to content

sjungwirth/kohana-solr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

##Introduction## A light weight Kohana Solr module that uses JSON response and JSON input for faster document indexing and simplicity.

##Features## Transparently add documents to solr from PHP arrays or objects:

<?php
$doc = array(
    'id' => 1234,
    'title' => 'How to tie a tie',
);

Solr::instance()->index($doc);

Index multiple docs at once:

<?php
Solr::instance()->batch_index($docs);

Simple search:

<?php
$response = Solr::instance()->search($lucene_query);

About

light weight kohana solr module

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published