Join us Sept 17 at .local NYC! Use code WEB50 to save 50% on tickets. Learn more >
MongoDB Event
Docs 菜单
Docs 主页
/ / /
PHP 库手册
/ / /

MongoDB\Model\CollectionInfo::getCappedSize()

自 1.9 版起已弃用

MongoDB\Model\CollectionInfo::getCappedSize()

返回固定大小固定大小集合的大小限制(以字节为单位)。 这与 MongoDB\Database::createCollection()size选项相关。

function getCappedSize(): integer|null

固定大小集合的大小限制(以字节为单位)。 如果collection未设定上限,则返回null

此方法已弃用,取而代之的是使用MongoDB\Model\CollectionInfo::getOptions()和访问size密钥。

<?php
$db = (new MongoDB\Client)->test;
// Creates a capped collection with a size of 1048576
$db->createCollection(
'myCappedCollection',
['capped' => true, 'size' => 1048576]
);
// Retrieves the size limit for the capped collection
foreach ($db->listCollections(['filter' => ['name' => 'myCappedCollection']]) as $info) {
var_dump($info->getCappedSize());
}

而输出将类似如下所示:

int(1048576)
  • MongoDB\Model\CollectionInfo::getCappedMax()

  • MongoDB\Model\CollectionInfo::isCapped()

  • MongoDB\Database::createCollection()

  • MongoDB 手册中的固定大小集合

  • MongoDB 手册中的listCollections命令参考

后退

getCappedMax()

在此页面上