From 50b015019c82be65524722443ebb0bc61da0f777 Mon Sep 17 00:00:00 2001 From: Ankur Datta Date: Mon, 11 Mar 2024 19:04:29 +0600 Subject: [PATCH] feat: refine pulse further --- content/400-pulse/100-what-is-pulse.mdx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/content/400-pulse/100-what-is-pulse.mdx b/content/400-pulse/100-what-is-pulse.mdx index 30463039fb..ae8eea6bc9 100644 --- a/content/400-pulse/100-what-is-pulse.mdx +++ b/content/400-pulse/100-what-is-pulse.mdx @@ -10,23 +10,21 @@ toc: true [Prisma Pulse](https://www.prisma.io/data-platform/pulse) is managed database-event infrastructure that captures and distributes your database events to your application. It simplifies subscribing to type-safe data changes with an extended [Prisma Client](/orm/prisma-client) to power real-time functionality. -![What is Pulse](./images/what-is-pulse.png) - -## How does it work? +## How Prisma Pulse works -Prisma Pulse leverages Change Data Capture (CDC) to efficiently observe and capture database changes as they occur. By monitoring the database's transaction log, Prisma Pulse identifies change events like inserts, updates, and deletes without impacting the database's performance. +Prisma Pulse leverages Change Data Capture (CDC) to efficiently observe and capture database canges as they occur. By monitoring the database's transaction log, Prisma Pulse identifies change events like inserts, updates, and deletes without impacting the database's performance. The captured events are processed, evaluated, and swiftly distributed to relevant client subscriptions ensuring your applications stay synchornized with the latest database state. This eliminates the need for complex polling or manual data synchronization, saving you development time and effort. -## What can I build with it? +![What is Pulse](./images/what-is-pulse.png) -Prisma Pulse can power real-time functionality like chat, notifications, data broadcast, data synchronization, and more. +## What you can build with Prisma Pulse -It's ideal for ensuring data consistency in distributed systems, enhancing real-time user experiences. +Prisma Pulse can power real-time functionality like chat, notifications, data broadcast, data synchronization, and more. It's ideal for ensuring data consistency in distributed systems, enhancing real-time user experiences. ![Prisma Pulse usecases](./images/pulse-usecase.png)