While exploring your library for mongo db. it seems like a good effort. I have been using mongoose for mongodb for quite some while. An issue that I have seen is that it cannot open connections to multiple MongoDB databases at the same time. for instance to perform migration
you'd open the connection to database A,
read all the data using this connection and dump it
close the connection
open the connection to database B
read all the dump from step 2
write into database B
close the connection.
is it possible with this library to open two connections together
While exploring your library for mongo db. it seems like a good effort. I have been using mongoose for mongodb for quite some while. An issue that I have seen is that it cannot open connections to multiple MongoDB databases at the same time. for instance to perform migration
is it possible with this library to open two connections together