You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can install the latest stable release by installing the MongoDB package:
140
40
141
-
`Mongoose <https://metacpan.org/module/Mongoose>`_ is an attempt to
142
-
bring together the full power of Moose with MongoDB. It provides a full suite
143
-
of object-to-document mapping facilities. Created by Rodrigo
144
-
de Oliveira Gonzalez.
41
+
.. code-block:: sh
145
42
146
-
MongoDBI
147
-
~~~~~~~~
43
+
$ cpan MongoDB
148
44
149
-
`MongoDBI <https://metacpan.org/module/MongoDBI>`_ is an
150
-
Object-Document-Mapper (ODM) for MongoDB. It allows you to create
151
-
Moose-based classes to interact with MongoDB databases.
45
+
See `Installation <https://github.com/mongodb/mongo-perl-driver/blob/master/INSTALL.md>`_
46
+
for more information.
152
47
153
-
MongoDBI allows you to easily model classes while leveraging
154
-
the power of MongoDB's schema-less and expeditious document-based design,
155
-
dynamic queries, and atomic modifier operations. Created by Al Newkirk.
156
48
157
-
MongoDBx::Class
158
-
~~~~~~~~~~~~~~~
49
+
Connect to MongoDB Atlas
50
+
------------------------
159
51
160
-
`MongoDBx::Class <https://metacpan.org/module/MongoDBx::Class>`_ is an
161
-
ORM for MongoDB databases. MongoDBx::Class takes advantage of the fact
162
-
that Perl's MongoDB driver is Moose-based to extend and tweak the
163
-
driver's behavior, instead of wrapping it. This means MongoDBx::Class
164
-
does not define its own syntax, so you simply use it exactly as you
165
-
would the MongoDB driver directly. Created by Ido Perlmuter.
52
+
To connect to a `MongoDB Atlas <https://docs.atlas.mongodb.com/>`_ cluster, use the `Atlas connection string <https://docs.atlas.mongodb.com/driver-connection>`__ for your cluster:
166
53
167
-
Other Perl Tools
168
-
----------------
54
+
.. code-block:: perl
169
55
170
-
BSON and BSON::XS
171
-
~~~~~~~~~~~~~~~~~
56
+
use MongoDB;
172
57
173
-
`BSON <https://metacpan.org/module/BSON>`_ is a pure-Perl BSON
174
-
implementation. Created by Stefan G. and maintained by MongoDB.
0 commit comments