Coder Social home page Coder Social logo

co-semaphore's People

Contributors

logicalparadox avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

co-semaphore's Issues

Possible to use without preparing entire array first?

I'm using co-semphore to do a very large number of tasks, and have adapted it from the example in the README. Is it possible to use co-semaphore without having to prepare the entire array first? I'm doing for (var i of tasks()) where tasks() is a generator that generates potentially a huge number of results. But following the example usage of co-semphore I iterate through tasks() and add it to an array res, which then gets yielded.

But is it possible use it in such a way that I don't need to prepare the whole array first, which would be inefficient in cases where the generator generates a huge number of results. A web crawler for example, where things are added to the queue during operation and aren't known up front.

  var res = [];
  for (var i of tasks()) {
     res.push(operation(i, lock));
  }
  console.log(res.length);
  console.log('res', yield res);

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.