Class MongoDbDriverLiveAdapter

java.lang.Object
app.ductape.sdk.database.adapters.BaseAdapter
app.ductape.sdk.database.adapters.MongoDbDriverLiveAdapter

public class MongoDbDriverLiveAdapter extends BaseAdapter
Real MongoDB adapter via the official MongoDB Java Sync Driver (Go/.NET Mongo live-adapter parity). The connection pool is explicitly capped at 1 connection — the VPC connector tunnel local proxy only accepts a single TCP connection per connect() call, so pooling beyond 1 connection would be unusable anyway.

Table name = collection name. where maps are translated to MongoDB filter documents via simple per-key equality (Filters.eq(TItem)), consistent with the in-memory MongoDBAdapter stub's equality-only where matching.