Andrea Selva
Andrea Selva
@rongwei84n You are saying that we can't differentiate between error code 4 and 5 when the IAuthenticator.checkValid() returns false?
Sorry @ilylia but this PR miss an important part, at least one test that manifest the problem you are trying to solve.
If you do ```mvn dependency:tree``` to see how maven resolves, which is the output? This seems strange it look like the dependency in you pom is scope _runtime_
@Klarzahs could you try with version 0.9? To reprodcue I just need to create a plain maven Spring boot app and add the Moquette dependency?
Hi @amzexin about your questions: > Ctrie must be lock-free? the answer is yes, because CTrie is accessed concurrently by the subscriber and publisher threads. > can you provide some...
@hylkevds good to remind it, I haven't yet thought about :-) I'm working on your suggestion to reuse already consumed segments in pages. I think that the close/cleanup of a...
Yes, I'm currently asking myself if moquette needs only HA or push to a clustered, this could potentially denaturalize the spirit of the project. I don't like to introduce such...
Seems nice, do you have a public repo? On Mon, Mar 18, 2019 at 9:32 AM qzj wrote: > Our company refers to your project, implements zookeeper coordination, and >...
Hi @shuzhongling could you describe better the problem. Do you mean that on client abnormal disconnect, the broker should drop the subscriptions? Why if the same client reconnects with not...
Yes, it support since old versions. Here is, for example, one of sides where the broker stores the retained: https://github.com/moquette-io/moquette/blob/d8a59f135b2cf0896e04f6f02483b0841920fe60/broker/src/main/java/io/moquette/broker/PostOffice.java#L195-L202 Look at implementation of IRetainedRepository: https://github.com/moquette-io/moquette/blob/d8a59f135b2cf0896e04f6f02483b0841920fe60/broker/src/main/java/io/moquette/broker/IRetainedRepository.java#L27