Git Product home page Git Product logo

Comments (6)

jasnell avatar jasnell commented on August 22, 2024 1

assuming a concurrency of 1, yes. But if the worker is configured to handle more than one task at a time, then that can't be guaranteed

from piscina.

addaleax avatar addaleax commented on August 22, 2024

https://github.com/piscinajs/piscina#custom-task-queues says:

By default, Piscina uses a simple array-based first-in-first-out (fifo) task queue. When a new task is submitted and there are no available workers, tasks are pushed on to the queue until a worker becomes available.

If the default fifo queue is not sufficient, user code may replace the task queue implementation with a custom implementation using the taskQueue option on the Piscina constructor.

There are no ordering guarantees once the task is passed off to the Worker thread, of course.

from piscina.

jasnell avatar jasnell commented on August 22, 2024

@ronag ... take a look at https://github.com/piscinajs/piscina-priority-queue for an example custom task queue that uses a priority queue to determine dispatch order.

from piscina.

ronag avatar ronag commented on August 22, 2024

I was actually more interested in the resolve order, rather than the dispatch order.

from piscina.

jasnell avatar jasnell commented on August 22, 2024

Ok, well, as @addaleax points out, there are no guarantees on resolve order. You could implement something using SharedArrayBuffer and Atomics but can't really recommend it.

from piscina.

ronag avatar ronag commented on August 22, 2024

What if there is only one worker? Then I guess the order is the same as the dispatch order?

from piscina.

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.