-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
189 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
<?php | ||
|
||
/** | ||
* This example demonstrates how to create an Atlas Search index and perform a search query. | ||
* It requires a MongoDB Atlas M10+ cluster with Sample Dataset loaded. | ||
* | ||
* Use the MONGODB_URI environment variable to specify the connection string from the Atlas UI. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace MongoDB\Examples; | ||
|
||
use Closure; | ||
use MongoDB\Client; | ||
use RuntimeException; | ||
|
||
use function define; | ||
use function getenv; | ||
use function hrtime; | ||
use function iterator_to_array; | ||
use function sleep; | ||
use function str_contains; | ||
|
||
require __DIR__ . '/../vendor/autoload.php'; | ||
|
||
$uri = getenv('MONGODB_URI'); | ||
if (! $uri || ! str_contains($uri, '.mongodb.net')) { | ||
echo 'This example requires a MongoDB Atlas cluster.', "\n"; | ||
echo 'Make sure you set the MONGODB_URI environment variable.', "\n"; | ||
exit(1); | ||
} | ||
|
||
// Atlas Search index management operations are asynchronous. | ||
// They usually take less than 5 minutes to complete. | ||
define('WAIT_TIMEOUT_SEC', 300); | ||
|
||
$client = new Client($uri); | ||
$collection = $client->selectCollection('sample_airbnb', 'listingsAndReviews'); | ||
|
||
$count = $collection->estimatedDocumentCount(); | ||
if ($count === 0) { | ||
echo 'This example requires the sample_airbnb database with the listingsAndReviews collection.', "\n"; | ||
echo 'Load the sample dataset in your MongoDB Atlas cluster before running this example:', "\n"; | ||
echo ' https://www.mongodb.com/docs/atlas/sample-data/', "\n"; | ||
exit(1); | ||
} | ||
|
||
// Delete the index if it already exists | ||
$indexes = iterator_to_array($collection->listSearchIndexes()); | ||
foreach ($indexes as $index) { | ||
if ($index->name === 'default') { | ||
echo "The index already exists. Dropping it.\n"; | ||
$collection->dropSearchIndex($index->name); | ||
|
||
// Wait for the index to be deleted. | ||
wait(function () use ($collection) { | ||
echo '.'; | ||
foreach ($collection->listSearchIndexes() as $index) { | ||
if ($index->name === 'default') { | ||
return false; | ||
} | ||
} | ||
|
||
return true; | ||
}); | ||
} | ||
} | ||
|
||
// Create the search index | ||
echo "\nCreating the index.\n"; | ||
$collection->createSearchIndex( | ||
/* The index definition requires a mapping | ||
* See: https://www.mongodb.com/docs/atlas/atlas-search/define-field-mappings/ */ | ||
['mappings' => ['dynamic' => true]], | ||
// "default" is the default index name, this config can be omitted. | ||
['name' => 'default'], | ||
); | ||
|
||
// Wait for the index to be ready. | ||
wait(function () use ($collection) { | ||
echo '.'; | ||
foreach ($collection->listSearchIndexes() as $index) { | ||
if ($index->name === 'default') { | ||
return $index->queryable; | ||
} | ||
} | ||
|
||
return false; | ||
}); | ||
|
||
// Perform a text search | ||
echo "\n", 'Performing a text search...', "\n"; | ||
$results = $collection->aggregate([ | ||
[ | ||
'$search' => [ | ||
'index' => 'default', | ||
'text' => [ | ||
'query' => 'view beach ocean', | ||
'path' => ['name'], | ||
], | ||
], | ||
], | ||
['$project' => ['name' => 1, 'description' => 1]], | ||
['$limit' => 10], | ||
])->toArray(); | ||
|
||
foreach ($results as $document) { | ||
echo ' - ', $document['name'], "\n"; | ||
} | ||
|
||
echo "\n", 'Enjoy MongoDB Atlas Search!', "\n\n"; | ||
|
||
/** | ||
* This function waits until the callback returns true or the timeout is reached. | ||
*/ | ||
function wait(Closure $callback): void | ||
{ | ||
$timeout = hrtime()[0] + WAIT_TIMEOUT_SEC; | ||
while (hrtime()[0] < $timeout) { | ||
if ($callback()) { | ||
return; | ||
} | ||
|
||
sleep(5); | ||
} | ||
|
||
throw new RuntimeException('Time out'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters