
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
mongodb-caching
Advanced tools
MongoDB with automatic Caching functionality using Keyv.
# npm
npm install mongodb-caching
# yarn
yarn add mongodb-caching
# pnpm
pnpm i mongodb-caching
These functions automatically handle caching
NOTE: When you update/insert/delete a document, the cache is not updated, you'll need to manually clear the cache using customClass.clear() or customClass.keyv.clear()
import { MongoClient } from "mongodb";
import MongoDBCaching from "mongodb-caching";
interface UserCollectionSchema {
username: string;
}
class User extends MongoDBCaching<UserCollectionSchema> {
create(username: string) {
//* this.collection refers to MongoDB.Db.Collection
return this.collection.insertOne({ username });
}
getUser(username: string) {
//* Internally handles caching
return this.findOne({ username });
}
}
async function run() {
const mongodb = new MongoClient("mongoUri");
const userCollection = new User(mongodb.db("main").collection("users"));
await userCollection.create("Timeraa");
console.log(await userCollection.getUser("Timeraa"));
}
run();
import { MongoClient } from "mongodb";
import MongoDBCaching from "mongodb-caching";
interface UserCollectionSchema {
username: string;
ip: string;
}
interface Context {
ip: string;
}
class User extends MongoDBCaching<UserCollectionSchema, Context> {
create(username: string) {
//* this.collection refers to MongoDB.Db.Collection
return this.collection.insertOne({
username,
ip: this.context!.ip
});
}
getUser(username: string) {
//* Internally handles caching
return this.findOne({ username });
}
}
async function run() {
const mongodb = new MongoClient("mongoUri");
const userCollection = new User(mongodb.db("main").collection("users"));
//* Context would be set in let's say a middleware
userCollection.setContext({ ip: "someIp" });
await userCollection.create("Timeraa");
console.log((await userCollection.getUser("Timeraa"))?.ip);
}
run();
FAQs
MongoDB with automatic Caching functionality using Keyv.
We found that mongodb-caching demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.