Skip to content

Instantly share code, notes, and snippets.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApp50
{
class Program
@yapaxi
yapaxi / OneTimeRedisConnection.cs
Last active June 14, 2021 04:47
One-time Redis Connection
using StackExchange.Redis;
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApp41
{
class Program
@yapaxi
yapaxi / possible-fix-for-redis-reconnection-starvation.cs
Last active January 12, 2023 19:08
Possible fix for starvation in redis force reconnection code
using System;
using System.Threading;
using System.Threading.Tasks;
using StackExchange.Redis;
namespace ConsoleApp38
{
class Program
{
static async Task Main(string[] args)
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApp37
{