Popularity
2.1
Declining
Activity
3.9
-
31
3
2

Programming language: Kotlin
License: Apache License 2.0
Tags: Database    
Latest version: v1.1.3

fluid-mongo alternatives and similar libraries

Based on the "Database" category.
Alternatively, view fluid-mongo alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of fluid-mongo or a related project?

Add another 'Database' Library

README

fluid-mongo

Maven Central JCenter Kotlin MongoDB #fluid-libraries Slack Channel

Kotlin coroutine support for MongoDB built on top of the official MongoDB Reactive Streams Java Driver.

Installation

build.gradle.kts:

dependencies {
    implementation("io.fluidsonic.mongo:fluid-mongo:1.1.3")
}

Example

import io.fluidsonic.mongo.MongoClients
import org.bson.Document


suspend fun main() {
    val collection = MongoClients.create()
        .getDatabase("test")
        .getCollection("test")

    collection.insertOne(mapOf("hello" to "world"))    // suspending call
    collection.insertOne(mapOf("it's" to "so easy!"))  // suspending call

    collection.find().collect { document ->  // Kotlin Flow
        println(document)
    }
}

Output:

Document{{_id=5bb6b56f9cfa62686b5afc87, hello=world}}
Document{{_id=5bb6b56f9cfa62686b5afc88, it's=so easy!}}

License

Apache 2.0


Awesome Kotlin


*Note that all licence references and agreements mentioned in the fluid-mongo README section above are relevant to that project's source code only.