小编典典

我应该如何在protobuf-net中使用Booksleeve?

redis

我使用RedisConnection Set方法设置字节数组,但是如何获取数据?get返回包装的字节数组吗?

链接:

这可行,但感觉不对:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BookSleeve;
using ProtoBuf;
using System.IO;
namespace RedisTest001
{
    [ProtoContract, Serializable]
    public class Price
    {
        private string _ticker;
        private double _value;

        public Price()
        {
        }

        public Price(string ticker, double value)
        {
            _ticker = ticker;
            _value = value;
        }


        [ProtoMember(1)]
        public string Ticker
        {
            get { return _ticker; }
            set { _ticker = value; }
        }

        [ProtoMember(2)]
        public double Value
        {
            get { return _value; }
            set { _value = value; }
        }


    }

    class Program
    {
        static void Main(string[] args)
        {
            using (var conn = new RedisConnection("localhost"))
            {
                Price p = new Price("IBM", 101.55);

                byte[] raw;
                using (MemoryStream ms = new MemoryStream())
                {
                    Serializer.Serialize<Price>(ms,p);
                    raw = ms.ToArray();
                }

                conn.Open();
                conn.Set(1, p.Ticker, raw);


                var tb  = conn.Get(1,"IBM");

                var str = conn.Wait(tb);

                 Price p2 = Serializer.Deserialize<Price>(new MemoryStream(str));

            }
        }
    }
}

更多信息:

public static class pex
{
    public static byte[] ToBArray<T>(this T o)
    {
        using (MemoryStream ms = new MemoryStream())
        {
            Serializer.Serialize<T>(ms, o);
            return ms.ToArray();
        }
    }
}

class Program
{
    static void Main(string[] args)
    {
        Random RandomClass = new Random();

        using (var conn = new RedisConnection("localhost"))
        {

            conn.Open();

            for (int i = 0; i < 500000; i++)
            {
                Price p = new Price("IBM", RandomClass.Next(0, 1000));
                conn.AddToSet(2, "PRICE.IBM", p.ToBArray());
            }

阅读 287

收藏
2020-06-20

共1个答案

小编典典

那是完全正确的。“ Get”(BookSleeve)返回一个deferred
byte[]。您已正确使用Wait获取实际值byte[],然后使用MemoryStreamover this 通过protobuf-net
byte[]进行调用Deserialize

都好。

如果您弄清楚丑陋的任何步骤,我也许可以更具体一些,但是:

  • BookSleeve通过完全异步Task,因此需要WaitContinueWith访问byte[]
  • protobuf-net完全基于流,因此需要MemoryStream坐在byte[]

当然,如果添加通用实用程序方法(可能是扩展方法),则只需编写一次。

加上一个包装器类(用于某些跟踪/滑动过期)和一个L1缓存(Redis为L2),这在我们在stackoverflow上使用它的方式非常准确。

需要注意的是:该连接是线程安全的,并且打算被大量共享;请勿在每次操作时进行连接。

2020-06-20