m-barthelemy / vapor-queues-fluent-driver

A Fluent implementation for https://github.com/vapor/queues (Vapor4)
MIT License
32 stars 16 forks source link

Support the mongodb driver? #1

Closed Andrewangeta closed 4 years ago

Andrewangeta commented 4 years ago

Any plans to support the mongoldb fluent driver? I'd be open to help if this is a plan for the future.

m-barthelemy commented 4 years ago

Hi Andrew, as discussed together on Discord: it's probably not possible to support Mongo without importing the fluent-mongo-driver package.

This driver tries to avoid any direct dependency on any database-specific package, it only uses Fluent and SQLKit to build the SQL queries, meaning that it can only support engines who have a SQL based dialect interface.

If you decide to start your own Queues driver for mongo I'll be happy to help!