Giter VIP home page Giter VIP logo

Comments (5)

escamoteur avatar escamoteur commented on July 17, 2024 1

Hey, I now get up to 35k/s essages forwarded, thanks for the help

from redis-dart.

ra1u avatar ra1u commented on July 17, 2024

When you call LPUSH you wait for response to be received from server before advancing with second command.

Take a look in Readme when we present fast example. What we do here is that using send().then() approach, we are sending and receiving in asynchronous order - we send multiple "INCR" commands, before we process one.

I am not sure how you can take this approach from fast example with async, because after each async send() you wait for server to respond and that seems to be a bottleneck.

This library does not have requirements that we need to wait for response after each send. What is required is that each send() has exactly one (1) response from redis server.

from redis-dart.

escamoteur avatar escamoteur commented on July 17, 2024

from redis-dart.

escamoteur avatar escamoteur commented on July 17, 2024

from redis-dart.

ra1u avatar ra1u commented on July 17, 2024

Simple way you can validate this is something where you modify just the line that sends LPUSH

  void connectToPubSub(String channel) async {
    pubSub!.subscribe([channel]);
    final stream = pubSub!.getStream();
    var streamWithoutErrors = stream.handleError((e) => print("error $e"));
    await for (var msg in streamWithoutErrors) {
      var kind = msg[0];
      var jsonPayload = msg[2];
      if (kind == "message") {
        // final payload = jsonDecode(jsonPayload);
        // await redisCommand?.send_object(
        //     ['XADD', 'soketi-stream', '*', 'payload', jsonPayload]);
        // no await here
        redisCommand
            ?.send_object(['LPUSH', 'soketi-queue', jsonPayload.toString()]).then((_) { /* we dont care what is received */ })
      } else {
        print("received non-message ${msg}");
      }
    }
  }

from redis-dart.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.