Is it just me, or do I see a trend in naming projects using romance language words (Italian/Spanish/France)? Does it sound more exotic? Are these words less crowded?
Piscina – The Node.js Worker Pool
21–30 of 51 posts
Re: Piscina – The Node.js Worker Pool
#22Is it just me, or do I see a trend in naming projects using romance language words (Italian/Spanish/France)? Does it sound more exotic? Are these words less crowded?
I'm curious on why you call these languages "romance" languages. "Piscina" is a Portuguese word for "pool", by the way.
Re: Piscina – The Node.js Worker Pool
#23Is it just me, or do I see a trend in naming projects using romance language words (Italian/Spanish/France)? Does it sound more exotic? Are these words less crowded?
I'm curious on why you call these languages "romance" languages. "Piscina" is a Portuguese word for "pool", by the way.
Portuguese is also a romance language, as Spanish or Italian. Piscina also means pool in Spanish by the way :)
Re: Piscina – The Node.js Worker Pool
#24Is it just me, or do I see a trend in naming projects using romance language words (Italian/Spanish/France)? Does it sound more exotic? Are these words less crowded?
I'm curious on why you call these languages "romance" languages. "Piscina" is a Portuguese word for "pool", by the way.
Re: Piscina – The Node.js Worker Pool
#25Earlier quoted context omitted.
I'm curious on why you call these languages "romance" languages. "Piscina" is a Portuguese word for "pool", by the way.
To quote Wikipedia, "Romance languages (less commonly Latin languages, or Neo-Latin languages) are the modern languages that evolved from Vulgar Latin between the third and eighth centuries." "Piscina" is also "pool" in Romanian, which is, you guessed, a Romance language.
In Portuguese they're only known for "Latin languages", which explains my question. ;-)
Re: Piscina – The Node.js Worker Pool
#26Is it just me, or do I see a trend in naming projects using romance language words (Italian/Spanish/France)? Does it sound more exotic? Are these words less crowded?
I'm curious on why you call these languages "romance" languages. "Piscina" is a Portuguese word for "pool", by the way.
Re: Piscina – The Node.js Worker Pool
#27Does anybody use this or anything similar? If so, what problems are you solving?
In deno, you can restrict what the code inside worker can do by passing a map of allowed permissions. I have built a simple privilege system on top of this to allow users different access level.
This is cheaper and faster than spinning up container.
Re: Piscina – The Node.js Worker Pool
#28Does anybody use this or anything similar? If so, what problems are you solving?
https://github.com/domenic/worm-scraper/blob/master/lib/conv...
Re: Piscina – The Node.js Worker Pool
#29What would be nice is a way of preventing the same job running multiple times concurrently. Like if I start a job and a job with the same parameters was already started milliseconds ago then it automatically awaits the already running job rather than starting another.
You could build a reasonably lightweight supervisor pattern that uses a parameter-derived hash for comparison to handle this kind of situation in your application too. Might be easier and more flexible than asking the library to do it?
Re: Piscina – The Node.js Worker Pool
#30Is it just me, or do I see a trend in naming projects using romance language words (Italian/Spanish/France)? Does it sound more exotic? Are these words less crowded?
I'm curious on why you call these languages "romance" languages. "Piscina" is a Portuguese word for "pool", by the way.