Introduction
Explore how to create an admin dashboard using Phoenix Tracker and Presence to track active shoppers and their carts in real-time. Understand distributed state management challenges and implement access controls to restrict dashboard usage to admins. This lesson guides you through planning, setting up, and integrating these features for live store analytics.
We'll cover the following...
This section will create an admin-facing dashboard that will show real-time information about all the current shoppers on the website. We’ll learn about and use Phoenix Tracker and Presence along the way.
Phoenix Tracker
The distributed state is a challenging problem. Variations in time and network partitions are just some of the challenges we’ll face when writing a distributed system. Phoenix Tracker makes distributing a ...