Skip to content

Commit 96bafc3

Browse files
committed
Added SEO for Analytics
1 parent f98809c commit 96bafc3

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

docs/howtos/analytics/index-analytics.mdx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ slug: /howtos/analytics
66
authors: [ajeet]
77
---
88

9+
An interactive analytics dashboard serves several purposes. They allow you to share data and provide you with all those vital information to make game-changing decisions at a faster pace. Building a real-time dynamic dashboard using a traditional relational database might require a complex set of queries. By using a NoSQL database like Redis, you can build a powerful interactive and dynamic dashboard with a small number of Redis commands.
910

10-
An interactive analytics dashboard serves several purposes. They allow you to share data and provide you with all those vital information to make game-changing decisions at a faster pace. Building a real-time dynamic dashboard using a traditional relational database might require a complex set of queries. By using a NoSQL database like Redis, you can build a powerful interactive and dynamic dashboard with a small number of Redis commands.
1111

12-
This tutorial shows a basic analytics dashboard app that uses Redis Bitmap written in NodeJS (JavaScript)
12+
Redis is an open source, in-memory, key-value data store most commonly used as a primary database, cache, message broker, and queue. Redis cache delivers sub-millisecond response times, enabling fast and powerful real-time applications in industries such as gaming, fintech, ad-tech, social media, healthcare, and IoT.
13+
This tutorial shows a basic analytics dashboard app that uses Redis Bitmap written in NodeJS (JavaScript).
14+
1315

1416
<div class="text--center">
1517
<iframe width="760" height="415" src="https://www.youtube.com/embed/Ugym4yUeIhA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
@@ -55,6 +57,18 @@ Go to /server folder (cd ./server) and then execute the following command:
5557
docker-compose up -d --build
5658
```
5759

60+
In most of the cases, you might require to preface the docker command with `sudo`. If you don't want to use sudo, create a Unix group called docker and add users to it. When the Docker daemon starts, it creates a Unix socket accessible by members of the docker group.
61+
Once the Redis database is up and running, you can verify the connection to redis instance using the redis client software.
62+
63+
64+
:::info TIP
65+
- By default, Redis runs on port 6379 but you can change it by specifying the right host port in the docker compose file.
66+
- You can use Redis configuration file and mount it as volumes in the docker compose YAML file.
67+
- You can connect to the redis instance by using `redis-cli -h hostname -p port` command.
68+
- You can even run redis info command to get overall statistic details of redis instance like cache, memory stats, redis metrics and modules enabled.
69+
- You can use a redis cli command called `redis monitor` to get real time redis logs .
70+
:::
71+
5872
### Step 6. Run the backend
5973

6074
```bash

0 commit comments

Comments
 (0)