Skip to content

Releases: ekondur/RedisUI

1.4.0

22 Jun 14:41
Compare
Choose a tag to compare

What's Changed

image

Full Changelog: v1.3.1...v1.4.0

1.3.1

14 Jun 11:09
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.0...v1.3.1

1.3.0

02 Apr 20:19
d5d7900
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.0...v1.3.0

v1.2.0

01 Apr 19:53
73dfd6a
Compare
Choose a tag to compare

What's Changed

ConfigurationOptions options = new ConfigurationOptions
{
    EndPoints = { { "my-redis.cloud.redislabs.com", 6379 } },
    User = "default",  // use your Redis user. More info https://redis.io/docs/management/security/acl/
    Password = "secret", // use your Redis password
    Ssl = true,
    SslProtocols = System.Security.Authentication.SslProtocols.Tls12                
};
app.UseRedisUI(new RedisUISettings
{
    ConfigurationOptions = options
});

Full Changelog: v1.1.0...v1.2.0

1.1.0

18 Mar 19:16
83c5180
Compare
Choose a tag to compare

#31 Added Key Deletion Functionality