All eyes on AI: 2026 predictions – The shifts that will shape your stack.

Read now
For developersHow to Build a Social Network Application using Redis and NodeJS
Fallback Image
Julian Mateu
Fallback Image
Manuel Aguirre
Social network application hero illustration
In this blog post we’ll build a social network application using Redis and NodeJS. This is the idea that we used for our app Skillmarket.
The goal of the application is to match users with complementary skills. It will allow users to register and provide some information about themselves, like location, areas of expertise and interests. Using search in Redis it will match two users who are geographically close, and have complementary areas of expertise and interests, e.g., one of them knows French and want to learn Guitar and the other knows Guitar and want to learn French.
The full source code of our application can be found in GitHub (note that we used some features like FT.ADD which is now FT.CREATE):
We will be using a more condensed version of the backend which can be found in the Skillmarket Blogpost GitHub repo.
Refer to the official tutorial for more information about search in Redis.

#Getting Familiar with search in Redis

#Launching search in Redis in a Docker container

Let’s start by launching Redis from the Redis image using Docker:
Here we use the docker run command to start the container and pull the image if it is not present. The -d flag tells docker to launch the container in the background (detached mode). We provide a name with --name redis which will allow us to refer to this container with a friendly name instead of the hash or the random name docker will assign to it.
Finally, redis:latest tells docker to use the latest version of the redis image
Once the image starts, we can use docker exec to launch a terminal inside the container, using the -it flag (interactive tty) and specifying the redis name provided before when creating the image, and the bash command:
Once inside the container, let’s launch a redis-cli instance to familiarize ourselves with the CLI:
You will notice the prompt now indicates we’re connected to 127.0.0.1:6379

#Creating Users

We’ll use a Hash as the data structure to store information about our users. This will be a proof of concept, so our application will only use Redis as the data store. For a real life scenario, it would probably be better to have a primary data store which is the authoritative source of user data, and use Redis as the search index which can be used to speed up searches.
In a nutshell, you can think of a hash as a key/value store where the key can be any string we want, and the values are a document with several fields. It’s common practice to use the hash to store many different types of objects, so they can be prefixed with their type, so a key would take the form of "object_type:id".
An index will then be used on this hash data structure, to efficiently search for values of given fields. The following diagram taken from the search docs exemplifies this with a database for movies:
Diagram showing how an index is used on a hash data structure for movies
Use the help @hash command (or refer to the documentation) to get a list of commands that can be used to manipulate hashes. To get help for a single command, like HSET let’s type help HSET:
As we see, we can provide a key and a list of field value pairs.
We’ll create a user in the hash table by using user:id as the key, and we’ll provide the fields expertises, interests and location:

#Query to match users

Here we can see the power of the search index, which allows us to query by tags (we provide a list of values, such as interests, and it will return any user whose interests match at least one value in the list), and Geo (we can ask for users whose location is at a given radius in km from a point).
To be able to do this, we have to instruct search to create an index:
We use the FT.CREATE command to create a full text search index named idx:users. We specify ON hash to indicate that we’re indexing the hash table, and provide PREFIX 1 "users:" to indicate that we should index any document whose key starts with the prefix “users:”. Finally, we indicate the SCHEMA of the index by providing a list of fields to index, and their type.
Finally, we can query the index using the FT.SEARCH command (see the query syntax reference):
In this case we’re looking for matches for Alice, so we use her expertises in the interests field of the query, and her interests in the expertises field. We also search for users in a 5km radius from her location, and we get Bob as a match.
If we expand the search radius to 500km we’ll also see that Charles is returned:

#Cleaning Up

We can now remove the docker instance and move on to building the web application, running the following command from outside the instance:

#Building a minimal backend in Typescript

After understanding how the index works, let’s build a minimal backend API in NodeJS that will allow us to create a user, and query for matching users.
NOTE
This is just an example, and we’re not providing proper validation or error handling, nor other features required for the backend (e.g. authentication).

#Redis client

We’ll use the node-redis package to create a client:
All the functions in the library use callbacks, but we can use promisify to enable the async/await syntax:
Finally, let’s define a function to create the user index, as we did before in the CLI example:

#User controller

Let’s define the functions that the controller will use to expose a simple API on top of Redis. We’ll define 3 functions: - findUserById(userId) - createUser(user) - findMatchesForUser(user)
But first let’s define the model we’ll use for the users:
Let’s start with the function to create a user from the model object:
We will create a UUID for the user, and then transform the TAG and GEO fields to the redis format. Here’s an example of how these two formats look like:
Comparison of Redis formats for TAG and GEO data types
Let’s now look at the logic to retrieve an existing user from the Hash table using HGETALL:
Here we have the inverse logic, where we want to split the TAG and GEO fields into a model object. There’s also the fact that HGETALL returns the field names and values in an array, and we need to build the model object from that.
Let’s finally take a look at the logic to find matches for a given user:
Here we swap interests and expertises to find the complementary skill set, and we build the query that we used previously in the CLI example. we finally call the FT.SEARCH function, and we build the model object from the response, which comes as an array. Results are filtered to exclude the current user from the matches list.

#Web API

Finally, we can build a trivial web API using express, exposing a POST /users endpoint to create a user, a GET /users/:userId endpoint to retrieve a user, and a GET /users/:userId/matches endpoint to find matches for the given user (the desired radiusKm can be optionally specified as a query parameter)

#Full code example

The code used in this blogpost can be found in the GitHub repo. The backend together with redis can be launched using docker compose:
The backend API will be exposed on port 8080. We can see the logs with docker compose logs, and use a client to query it. Here’s an example using httpie:
Finally cleanup the environment:

#References