Renjie Cai

Results 36 comments of Renjie Cai

haven't test it on newest etcd. Gonna take a look

It's kinda complicated problem. https://github.com/etcd-io/etcd/issues/9159 Pretty much simmilar to your #113 , but `deleterange` method does not provide a "limit" parameter. I found this: https://github.com/grpc-ecosystem/grpc-gateway/blob/ee3ef70b7777cde4e61e4e224cb11e92beecee6a/docs/_docs/features.md#supported I'll try if that works.

@heitorPB This lib is not maintained for years 😂 Fankly, this lib be very buggy or even not usable for etcd nowadays. I also haven't use etcd directly for long...

Under current design, we should create a multi-endpoint client like this: ``` client=Client(endpoints=[EtcdEndpoint(), EtcdEndpoint()]) ``` seems not very friendly here are the some other code for your reference: - sync...

BTW: you can add your name in `AUTHORS.rst` 😄

Yes, that's a feature of etcd3: Instead of etcd2 only accept ascii string as key and value, the data type of etcd3's key&value are both binary data which is bytes...

希望能提供更多信息,比如有没有报错;手动 index_all 一下看有没有报错,生成的索引文件的大小等等

你可以看这一行 https://github.com/Revolution1/Flask-WhooshAlchemyPlus/blob/master/flask_whooshalchemyplus.py#L296 新加数据是在在每次 commit 的时候会进行一次索引 你可以注意一下这里的 log 如果实在没有 log 你可以在这个函数里打个断点看会不会命中到,命中到之后怎么走的