zf2/zf2amazoncloudsearch

This is amazon cloud search module for zend 2

dev-master 2013-09-02 08:50 UTC

This package is not auto-updated.

Last update: 2024-06-08 11:24:54 UTC


README

Installation using composer

  • add a 'zf2/ZF2Amazoncloudsearch' : 'dev' in composer.json file
  • now excute composer install
  • add Module in you application.config.php file

** How you can use this in your project **

$cloudobj = $this->getServiceLocator()->get('cloudSearch');
     
     $data    = array(
        'name of field on cloud search' 
    );

     $result = $cloudobj->search('query',$data );