With the OramaCloud PHP Client SDK, you can perform search queries on your Orama index, or programmatically update your index data and trigger new deployments. Integrate Orama Cloud in your PHP application using the REST APIs to insert and upsert your index data and trigger deployments when it's convinient for your use case.
composer require oramacloud/client
PHP: 7.3 or later
use OramaCloud\Client;
use OramaCloud\Client\Query;
$client = new Client([
'api_key' => '<Your Orama Cloud API Key>',
'endpoint' => '<Your Orama Cloud Endpoint>'
]);
$query = (new Query('red shoes'))
->where('price', 'gt', 99.99);
$results = $client->search($query);
use OramaCloud\Client;
use OramaCloud\Client\Query;
use OramaCloud\Client\QueryParams/WhereOperator;
use OramaCloud\Client\QueryParams/SortByOrder;
$client = new Client([
'api_key' => '<Your Orama Cloud API Key>',
'endpoint' => '<Your Orama Cloud Endpoint>'
]);
$query = new Query();
$query->term('red shoes')
->mode('hybrid')
->where('price', WhereOperator::LTE, 9.99)
->where('gender', WhereOperator::EQ, 'unisex')
->sortBy('price' SortByOrder::DESC)
->limit(5)
->offset(1);
$results = $client->search($query);
use OramaCloud\Manager\IndexManager;
$index = new IndexManager('<Your Index-ID>', '<Your Private API Key>');
// Empty data
$index->empty();
// Insert records
$index->insert([
['id' => '1', 'name' => 'John Doe', 'age' => 20 ],
['id' => '2', 'name' => 'Mario Rossi', 'age' => 25 ],
['id' => '3', 'name' => 'John Smith', 'age' => 35 ],
]);
// Update records
$index->update([[ 'id' => '1', 'name' => 'Jane Doe', 'age' => 30 ]]);
// Delete records
$index->delete(['1', '2']);
// Trigger deployment
$index->deploy();
composer test
Apache-2.0 license. Please see License File for more information.