I am using Redis Server as SignalR backplane in a Asp.net SignalR application. I also want to add some data in cache to the same Redis Server from the same application. The connection to the Redis server is maintained by the SignalR library and not exposed. Is it ok to create an additional connection to Redis server besides the one maintained by Signal library? The additional connection will allow me to store data in the Redis cache.
How do I cache data on a Redis server which is used as SignalR backplane?
518 Views Asked by Manish Garg At
1
There are 1 best solutions below
Related Questions in SIGNALR
- SignalR HubConnection.Start() succeeds but Invoke() fails with authentication error
- Task await fails
- Aborting/Cancelling an AJAX request not working in IE
- Signalr:'default' done for a hub.server.method call
- SignalR oAuth on self host
- SqlDependancy is firing more times
- Multiple Calls from SignalR client
- Can I run SignalR hub through Azure API Management?
- How to save connection when u change page in signalR
- Signal R Thread blocking the HTTP Request and Response
- Websocket Android SignalR with Forms Authentication don´t connect
- send SignalR client message from background thread
- Real time updates from mySQL database with ASP.NET SignalR
- Callback on client does not get triggered with SignalR
- Can a SignalR method name be namespaced?
Related Questions in SIGNALR-BACKPLANE
- Multiple signalr hubs with different configuration
- Signalr client to retrieve missed messages on reconnect
- SignalR in Azure: how can I scale out with the Specific Service pattern?
- SignalR Hub-2-Hub Communication with SQL Backplane in ASP.NET Owin
- .NET Core based SignalR client with Redis Backplane receiving duplicate messages
- SignalR scaleout with Redis Cluster
- How do I cache data on a Redis server which is used as SignalR backplane?
- SignalR Redis backplane not working - dependency issue?
- Using Azure Redis Cache for storing Session data, and for SignalR Backplane
- Is it possible to add SignalR messages directly to the SQL Backplane?
- External Messaging SignalR (DB ==> WebServer)
- SignalR sticky sessions with F5 and Citrix
- SignalR SQL Server Scaleout Users Allocation
- Signalr connection failed for API hosted on webgarden
- SignalR static objects inside hub makes reconnect fail with backplane
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Additional connections should be fine. SignalR uses Redis for messaging on the
signalrchannel. As long as you do not publish anything there yourself, it should work fine. We use the same Redis server as SignalR for different messages on different channels.Just do
redis = ConnectionMultiplexer.Connect("RedisHost:RedisPort");where you want to make a new connection.RedisHostandRedisPortare the same as with SignalR.