Chuck LU

Results 132 comments of Chuck LU

@LordDrew This should not be a bug, it's a network problem. You might contact your network provider to solve it. C:\Users\[username]\AppData\Roaming\HearthstoneDeckTracker\Images

@azeier @jleclanche Is it possible to show the minion name along with the image? The minion name can be used to recognize the minion even if the minion image load...

@LordDrew The card image seems download from here https://github.com/HearthSim/Hearthstone-Deck-Tracker/blob/5db69b9d7ccc22afa70fce5e4b96443c30804320/Hearthstone%20Deck%20Tracker/Utility/Assets/AssetDownloaders.cs#L22 You might try to access https://art.hearthstonejson.com/v1/256x/DMF_533.jpg to see if your network works well.

@azeier @riQQ @jleclanche Found a bug and did a fix, please review this pull request https://github.com/HearthSim/Hearthstone-Deck-Tracker/pull/4239

maybe try this ElasticSearch + Logstash + kibana record the log with client id, then query with the above tools

It's not a bug, when your network changes, there is noway to detect the client disconnected. That's why you need implement the heartbeat. The heartbeat is designed to handle this...

Please check this sample https://github.com/kerryjiang/SuperSocket/blob/27553dccc65ad88915343ba873a93f697b15efcb/test/SuperSocket.Tests/FixedHeaderProtocolTest.cs#L37 You need define the header size, and DecodePackage by yourself

The Filter method of IPipelineFilter is processed here https://github.com/kerryjiang/SuperSocket/blob/27553dccc65ad88915343ba873a93f697b15efcb/src/SuperSocket.Channel/PipeChannel.cs#L467 The logic you mentioned should be processed here If you think there is a problem, you could try to debug it

the current pipeline filter needs more data to process https://github.com/kerryjiang/SuperSocket/blob/27553dccc65ad88915343ba873a93f697b15efcb/src/SuperSocket.Channel/PipeChannel.cs#L498 This part should work fine, however you can debug and check

> 丢弃缓存中残缺的包,写在哪里比较好?用哪个方法 Not sure, have no experience about this, previously I think the lib could handle this automatically. Maybe @kerryjiang can help