Erfan Safari

Results 111 comments of Erfan Safari

@kaldaf You mean you can access MongoDB Atlas via local system but not Deno Deploy? BTW https://mongo-demo.deno.dev/ is a demo with MongoDB Atlas free M0 tier deployed on Deno Deploy...

![Screenshot from 2022-04-11 13-43-39](https://user-images.githubusercontent.com/47688578/162704743-cdc184bd-4a96-40fd-8b4c-df2829cc3c98.png) This should works (the database behind https://mongo-demo.deno.dev)

@BrunoBernardino for now: https://github.com/erfanium/atlas_sdk is my current option

@sekko27 Can you create a PR for it? thanks

This is an smaller repro for this bug ```ts import { Document, MongoClient } from "./mod.ts"; const client = new MongoClient(); await client.connect("mongodb://localhost:27017"); console.log("mongodb connected"); const db = client.database("app"); const...

@yuqiang-yuan Thank you yeah, there's work to be done about performance but i'm trying to keep everything in balance. some important features are still missing. so it would be nice...

@MierenManz I think you were interested in performance/benchmark stuff! This can be a good start

Which MongoDB atlas service do you use? https://mongo-demo.deno.dev/ works fine with M0 free tier

@VidarDev MongoDB Atlas has many different clusters. like serverless clusters, dedicated clusters and shared clusters. I can confirm there's not problem with fee M0 tier of dedicated cluster. Also we...

https://github.com/erfanium/deno-deploy-mongo this demo uses MongoDB Atlas for its database with no problem. do you use any non-default options when you creating a database? This issue needs a reproduction steps for...