MongoDB驱动 > Perl驱动程序
弃用
版本v2.2.0是MongoDB Perl驱动程序的最终功能版本。该驱动程序现在处于12个月的“日落”时期,并且仅会收到安全补丁和重要的错误修复程序。Perl驱动程序将在2020年8月13日停产并不受支持。
有关更多信息,请阅读此处。
这是官方的MongoDB Perl驱动程序。
Perl驱动程序可通过CPAN作为软件包 MongoDB获得。
您可以通过安装MongoDB软件包来安装最新的稳定版本:
$ cpan MongoDB
有关 更多信息,请参见安装。
要连接到MongoDB Atlas集群,请为集群使用 Atlas连接字符串:
use MongoDB;
my $client = MongoDB->connect(
'mongodb+srv://<username>:<password>@<cluster-address>/test?retryWrites=true&w=majority'
);
my $db = $client->get_database( 'test' );
Perl驱动程序 | MongoDB 4.2 | MongoDB 4.0 | MongoDB 3.6 | MongoDB 3.4 | MongoDB 3.2 | MongoDB 3.0 | MongoDB 2.6 |
---|---|---|---|---|---|---|---|
2.2 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
2.0 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | |
1.8 | ✓ | ✓ | ✓ | ✓ | |||
1.6 | ✓ | ✓ | ✓ | ✓ | |||
1.4 | ✓ | ✓ | ✓ | ||||
1.2 | ✓ | ✓ | ✓ | ||||
1.0 | ✓ | ✓ |
该驱动程序不支持旧版本的MongoDB。
MongoDB Perl驱动程序需要Perl 5.10.1或更高版本。