-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Feature Request
RAG MCP for agents
Conversation Transcript
User: What is database branching?
SerenAI: Database branching in SerenDB works like Git for your database - it lets you create isolated copies of your database in seconds for testing, staging, or development work.
Each branch is a copy-on-write clone, meaning you can modify data in a child branch without affecting the parent branch. This is perfect for:
- Testing schema changes safely before deploying to production
- Creating staging environments that mirror production
- Giving each developer their own database instance
- Running experiments you can easily discard
Quick example:
seren branch create staging --from productionThis creates a staging branch from your production branch instantly. You can then make changes, run tests, and either merge those changes back or simply delete the branch if things don't work out.
The key advantage is speed and safety - branches are created in seconds (not hours), and your production data stays protected while you work.
Submitted: 2025-10-15T18:31:48.074Z
Source: serendb.com/landing