FEATURES
Key features of Couchbase vs. legacy databases
- What’s included
- SQL
- ACID transactions
- Flexible JSON
- SQL++ (SQL for JSON)
- Built-in caching
- Multipurpose data access
- Built-in horizontal scaling
- Couchbase
- Legacy databases
- Limited
CUSTOMERS
What customers are saying
-
"Couchbase is a trifecta of value. We get more features, save time, and spend less money all at once."
Philip Lupercio, VP of Technology, BroadJump500% query performance improvement50% reduction in storage needs -
"We are able to put data to work in a more efficient way, and we have built a strong foundation for the future."
80% more efficient change management50% boost in response time -
"Couchbase puts us in a good place to really achieve our goal of a perfect customer experience."
Scott Carney, Director of Software Development, Comcast40M+ documents61K users
CODE SNIPPET
Couchbase's SQL++ is compatible with SQL and adds extra functionality for JSON data
SELECT u.name, AVG(o.total) AS avgOrderTotal
FROM users u
JOIN orders o ON u.userId = META(o).id
WHERE u.membershipLevel = 'Gold' AND u.status = 'active'
GROUP BY u.name
SELECT u.Name, AVG(o.Total) AS AvgOrderTotal
FROM Users u
JOIN Orders o ON u.UserId = o.UserId
WHERE u.MembershipLevel = 'Gold' AND u.Status = 'active'
GROUP BY u.Name