fluent / fluent-plugin-mongo

MongoDB input and output plugin for Fluentd
https://docs.fluentd.org/output/mongo
173 stars 61 forks source link

I Wanna Use Mongo Driver 1.12 #60

Closed Shota-Tajiri closed 9 years ago

Shota-Tajiri commented 9 years ago

Hi, I have question.

I wanna use MondoDB 3.0, because customer hope it.

But this plug-in supports Mongo Driver 1.9.

@fluent-plugin-mongo.gemspec
gem.add_dependency "mongo", "~> 1.9"

If this plug-in supports Mongo Driver 1.12, I can use MongoDB 3.0 (It's specified in Mongo Offical Site)

Do you have any problems, even If I use this plug-in with Mongo Driver 1.12?

repeatedly commented 9 years ago

You can use mongo gem v1.12. ~> is not == in gem dependency. See rubygems document for more detail.

If you have any problem with MongoDB 3.0, please report it.

Shota-Tajiri commented 9 years ago

Thanks for you quick reply.

I know '~>' is not '=='. but I didn't know that mean which range.

Thank you for helping me. I'll try mongoDB 3.0 with this plug-in.