Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
tests /
mongodb /
tests /
command /
Delete
Unzip
Name
Size
Permission
Date
Action
command-ctor-001.phpt
2.17
KB
-rw-r--r--
2025-04-09 02:56
command-ctor-002.phpt
765
B
-rw-r--r--
2025-04-09 02:56
command-ctor_error-001.phpt
479
B
-rw-r--r--
2025-04-09 02:56
command_error-001.phpt
250
B
-rw-r--r--
2025-04-09 02:56
cursor-batchsize-001.phpt
2.46
KB
-rw-r--r--
2025-04-09 02:56
cursor-batchsize-002.phpt
2.4
KB
-rw-r--r--
2025-04-09 02:56
cursor-comment-001.phpt
1.97
KB
-rw-r--r--
2025-04-09 02:56
cursor-tailable-001.phpt
1.78
KB
-rw-r--r--
2025-04-09 02:56
findAndModify-001.phpt
1.75
KB
-rw-r--r--
2025-04-09 02:56
update-001.phpt
1.66
KB
-rw-r--r--
2025-04-09 02:56
Save
Rename
--TEST-- MongoDB\Driver\Command tailable cursor iteration with maxAwaitTimeMS option --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php skip_if_not_replica_set(); ?> <?php skip_if_not_server_storage_engine('wiredTiger'); ?> <?php skip_if_not_clean(); ?> --FILE-- <?php require_once __DIR__ . "/../utils/basic.inc"; $manager = create_test_manager(); $manager->executeCommand(DATABASE_NAME, new MongoDB\Driver\Command([ 'create' => COLLECTION_NAME, 'capped' => true, 'size' => 1048576, ])); $bulkWrite = new MongoDB\Driver\BulkWrite; $bulkWrite->insert(['_id' => 1]); $manager->executeBulkWrite(NS, $bulkWrite); $pipeline = [ [ '$changeStream' => [ 'fullDocument' => 'updateLookup' ] ] ]; $command = new MongoDB\Driver\Command([ 'aggregate' => COLLECTION_NAME, 'pipeline' => $pipeline, 'cursor' => ['batchSize' => 0], ], [ 'maxAwaitTimeMS' => 500, ]); $cursor = $manager->executeCommand(DATABASE_NAME, $command); $it = new IteratorIterator($cursor); $it->rewind(); $it->next(); $bulkWrite = new MongoDB\Driver\BulkWrite; $bulkWrite->insert(['_id' => "new-document"]); $manager->executeBulkWrite(NS, $bulkWrite); $startTime = microtime(true); echo "Awaiting results...\n"; $it->next(); var_dump($it->current()->operationType, $it->current()->documentKey); printf("Waited for %.6f seconds\n", microtime(true) - $startTime); $startTime = microtime(true); echo "Awaiting results...\n"; $it->next(); var_dump($it->current()); /* Should be NULL */ printf("Waited for %.6f seconds\n", microtime(true) - $startTime); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- Awaiting results... string(6) "insert" object(stdClass)#%d (%d) { ["_id"]=> string(12) "new-document" } Waited for 0.%d seconds Awaiting results... NULL Waited for 0.%r(4|5)\d*%r seconds ===DONE===