Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So, I have a fairly basic understanding of Redis, but after some trial and error I setup a Redis server on my Win 7 64bit machine that actually does CRUD with C# (MVC4)

I have setup 3 basic classes and 1 works without any problems, however the other 2 give me this Unknown KeyType: None error in servicestack.net's Redis Admin UI Event Logger, which also prevents me from viewing those 2 classes' details in the same app.

Here are my 3 classes, the one that works is DbComment:

    public class DbComment
    {
        public long Id { get; set; }
        public string Comment { get; set; }
        public DbUser User { get; set; }
        public bool Approved { get; set; }
        public DateTime DateCreated { get; set; }
    }


    public class DbQuestions
    {
        public DbQuestions()
        {
            this.Comments = new List<DbComment>();
            this.Tags = new List<string>();
            this.Categories = new List<string>();
        }

        public long Id { get; set; }
        public string Question { get; set; }
        public string Answer { get; set; }
        public List<DbComment> Comments { get; set; }
        public DbUser UserAsked { get; set; }
        public DbUser UserAnswered { get; set; }
        public DbUser UserVerified { get; set; }
        public string QuestionUrl { get; set; }
        public bool Approved { get; set; }
        public List<string> Tags { get; set; }
        public List<string> Categories { get; set; }
    }


    public class DbUser
    {
        public DbUser()
        {
            this.QuestionIds = new List<long>();
        }

        public long Id { get; set; }
        public string Username { get; set; }
        public string Password { get; set; }
        public List<UserRoles> Roles { get; set; }

        public int PasswordAttempts { get; set; }
        public string DisplayName { get; set; }
        public string Email { get; set; }
        public DateTime DateRegistered { get; set; }
        public DateTime DateLastLoggedIn { get; set; }
        public int AvatarChoice { get; set; }

        public List<long> QuestionIds { get; set; }
    }

My Factory, which also currently fills the DB with some dummy data is:

public class Factory
{
    public RedisClient InSpirit { get { return new RedisClient("localhost", 6379); } }

    public Factory() 
    {
        InSpirit.FlushAll();
        InsertTestData();
    }

    public void InsertTestData()
    {
        using (var inSpiritUsers = InSpirit.As<DbUser>())
        using (var inSpiritComments = InSpirit.As<DbComment>())
        using (var inSpiritQuestions = InSpirit.As<DbQuestions>())
        {
            var sergey = new DbUser
            {
                Id = inSpiritUsers.GetNextSequence(),
                Username = "sergey",
                Password = "pass",
                DisplayName = "Serj",
                DateRegistered = DateTime.Now,
                Email = "me@email.com",
                Roles = new List<UserRoles> { UserRoles.Admin }
            };

            var question = new DbQuestions
            {
                Id = inSpiritQuestions.GetNextSequence(),
                UserAsked = sergey,
                Question = "Some Question?",
                QuestionUrl = "some-question",
                Answer = "This is a temporary answer.",
                Comments = new List<DbComment>
                {
                    new DbComment 
                    { 
                        Id = inSpiritComments.GetNextSequence(),
                        Comment = "Great Answer!",
                        User = sergey,
                        DateCreated= DateTime.Now,
                        Approved = true
                    },

                    new DbComment 
                    { 
                        Id = inSpiritComments.GetNextSequence(),
                        Comment = "This is very helpful!",
                        User = sergey,
                        DateCreated= DateTime.Now,
                        Approved = true
                    }
                }
            };

            sergey.QuestionIds.Add(question.Id);

            inSpiritUsers.Store(sergey);
            inSpiritQuestions.Store(question);
            inSpiritComments.StoreAll(question.Comments);
        }
    }
}

1) What is causing this error?

2) As I am so new to Redis and NoSQL in general, if you have other helpful advice as in the best way to structure these classes, I will appreciate that, and even give +1's for it, though Correct Answer will go to 1)

As you can see, I go out of my way to make sure correct answers are marked as such and I always give +1 credit, when it is due... thanks for your help

Update: If you select the either DbQuestions or DbUser in the left pane then reload the page, you can actually see that Urn, but you also get a new message: key for 'urn:dbquestions<em>(1)</em>' not found, fetching... Then it shows the original KeyType error...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.