Is there any service in Azure for Activity Feeds Management

Kalyana Chakravarthy Darshanam 0 Reputation points
2023-02-01T08:33:10.02+00:00

I want to understand if there is any service in Azure to handle Activity Feeds Management to build a social media app. I am looking for a service similar to Stream.io as a managed service to handle the feeds management.

Azure Media Services
Azure Media Services
A group of Azure services that includes encoding, format conversion, on-demand streaming, content protection, and live streaming services.
313 questions
Azure SignalR Service
Azure SignalR Service
An Azure service that is used for adding real-time communications to web applications.
131 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ryan Hill 26,866 Reputation points Microsoft Employee
    2023-02-05T19:30:58.99+00:00

    Hi @Kalyana Chakravarthy Darshanam ,

    I can't speak specifically towards an Activity Feeds Management out-of-the-box service but there several Azure services that you can leverage to build your projects.

    Azure SignalR Service is a service that allows real-time communication for your application over web sockets. The service is a robust platform that does scaling efficiently and easily, but you can always elect to host SignalR inside your app yourself but it isn't as robust.

    Azure Web PubSub is similar to SignalR service but the model is more aligned to publisher subscriber.

    Azure Service Bus is a messaging platform that allows a client to receive messages on a particular topic that have been queued by a sender. This messaging model is a sender push client pull model so when your client is ready to receive the messages, it will pull it off the queue. This can be coupled with Azure Function to have serverless compute easily pull messages off the topic the function is subscribed to.

    Hope this helps.

    0 comments No comments