Last active
March 31, 2018 23:21
-
-
Save Jonahss/a8cf79fb71830b28e8b413d8acbaa742 to your computer and use it in GitHub Desktop.
Redis AddToList
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using ServiceStack; | |
using ServiceStack.Text; | |
using ServiceStack.Redis; | |
using ServiceStack.DataAnnotations; | |
var redisManager = new RedisManagerPool("localhost:6379"); | |
var redis = redisManager.GetClient(); | |
// let's make sure this key doesn't exist first | |
redis.RemoveEntry("myList"); | |
// this demonstrates that items can be appended to the list, | |
// even if the list itself isn't defined yet | |
redis.AddItemToList("myList", "1"); | |
redis.AddItemToList("myList", "2"); | |
redis.AddItemToList("myList", "3"); | |
var list = redis.GetAllItemsFromList("myList"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="ServiceStack.Text" version="5.0.2" targetFramework="net45" /> | |
<package id="ServiceStack.Client" version="5.0.2" targetFramework="net45" /> | |
<package id="ServiceStack.Interfaces" version="5.0.2" targetFramework="net45" /> | |
<package id="ServiceStack.Redis" version="5.0.2" targetFramework="net45" /> | |
</packages> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment