nosql-databases
Installation
SKILL.md
NoSQL Databases
Production-grade NoSQL database patterns with MongoDB, Redis, Cassandra, and DynamoDB.
Quick Start
# MongoDB with PyMongo
from pymongo import MongoClient
from pymongo.errors import DuplicateKeyError
from datetime import datetime
client = MongoClient("mongodb://localhost:27017/")
db = client.analytics
events = db.events
# Create index for query performance
events.create_index([("user_id", 1), ("timestamp", -1)])
events.create_index([("event_type", 1)])
Related skills
More from pluginagentmarketplace/custom-plugin-data-engineer
statistics-math
Statistics, probability, linear algebra, and mathematical foundations for data science
327deep-learning
PyTorch, TensorFlow, neural networks, CNNs, transformers, and deep learning for production
48big-data
Apache Spark, Hadoop, distributed computing, and large-scale data processing for petabyte-scale workloads
43python-programming
Master Python fundamentals, OOP, data structures, async programming, and production-grade scripting for data engineering
31data-engineering
Data pipeline architecture, ETL/ELT patterns, data modeling, and production data platform design
29etl-tools
Apache Airflow, dbt, Prefect, Dagster, and modern data orchestration for production data pipelines
28