Accelerate
Speed up your database queries with an automated global cache
This speed test runs a simple count query on a dataset with 500k rows and shows the results with and without the Accelerate cache.
With Accelerate Cache
∞
queries per minute0 ms
latencyThe result of the database query is cached at the Accelerate caching node in N.VIRGINIA and retrieved from there:
- ✨ Reduced latency
- 🚀 Increased Query Capacity
- 🌟 Optimal Resource Utilization
await prisma.linkOpen.count({ cacheStrategy: { ttl: 3_600 }, where: {
link: {
User: {
email: {
contains: ".com",
},
},
},
},
});
Without Accelerate Cache
∞
queries per minute0 ms
latencyThe database query and its response need to travel to the database in N.VIRGINIA and retrieved from there:
- 🐢 High latency
- 🪫 Low Query Capacity
- 🚧 Poor Resource Utilization
await prisma.linkOpen.count({
where: {
link: {
User: {
email: {
contains: ".com",
},
},
},
},
});
Speed test history
No tests ran yet