Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Concurrent GEM for Ruby ?

1 view
Skip to first unread message

jamesl

unread,
Apr 25, 2009, 7:40:31 PM4/25/09
to
Hi,

I'm wondering if anyone would like to see a Concurrent Library for
Ruby, like the Java javax.concurrent library ?

I know you can just use this library from jruby, but Im thinking more
of a idiomatic Ruby library, which could also be used ontop of jruby.

If you are interested having such a library please can you let me know
via an email to james <underscore> ladd <at> hotmail <dot> com ?

Rgs, James.
www.jamesladdcode.com

Tony Arcieri

unread,
Apr 25, 2009, 8:52:37 PM4/25/09
to
[Note: parts of this message were removed to make it a legal post.]

On Sat, Apr 25, 2009 at 5:45 PM, jamesl <ladd....@gmail.com> wrote:

> I'm wondering if anyone would like to see a Concurrent Library for
> Ruby, like the Java javax.concurrent library ?
>

There are quite a few libraries that provide concurrency strategies already

--
Tony Arcieri
medioh.com

jamesl

unread,
Apr 25, 2009, 9:05:49 PM4/25/09
to
On Apr 26, 10:52 am, Tony Arcieri <t...@medioh.com> wrote:
> [Note:  parts of this message were removed to make it a legal post.]
>
> On Sat, Apr 25, 2009 at 5:45 PM, jamesl <ladd.ja...@gmail.com> wrote:
> > I'm wondering if anyone would like to see a Concurrent Library for
> > Ruby, like the Java javax.concurrent library ?
>
> There are quite a few libraries that provide concurrency strategies already
>
> --
> Tony Arcieri
> medioh.com

Like ? Do you have a few URL's to share?

jamesl

unread,
Apr 25, 2009, 11:40:15 PM4/25/09
to

> Like ?  Do you have a few URL's to share?

Not sure why I didnt find this the other day
http://moonbase.rydia.net/mental/blog/programming/the-future-of-the-omnibus

Suresh Kk

unread,
Apr 26, 2009, 12:44:15 AM4/26/09
to

Robert Klemme

unread,
Apr 26, 2009, 5:53:42 AM4/26/09
to
2009/4/26 jamesl <ladd....@gmail.com>:

> I'm wondering if anyone would like to see a Concurrent Library for
> Ruby, like the Java javax.concurrent library ?

Some building blocks are part of the standard library already: Mutex,
Monitor, MonitorMixin, Queue.

> If you are interested having such a library please can you let me know
> via an email to james <underscore> ladd <at> hotmail <dot> com ?

This is a public forum. Why should only you benefit from answers?

Kind regards

robert

--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/

Tony Arcieri

unread,
Apr 26, 2009, 1:04:14 PM4/26/09
to
[Note: parts of this message were removed to make it a legal post.]

On Sat, Apr 25, 2009 at 7:10 PM, jamesl <ladd....@gmail.com> wrote:

> Like ? Do you have a few URL's to share?
>

Well, I'm not sure what you're after. Two libraries for actor-based
concurrency (one of them mine) have been linked, but those aren't really
anything like java.util.concurrent.

Are you wanting a small framework for backgrounding work into "thread"
pools? (which would more likely be implemented as process pools)

Ruby's threads provide only sequential execution, since Ruby's memory model
is inherently sequential. For concurrent processing it's best to farm
things off to additional processes so that the OS's scheduler can make them
concurrent. There are packages to do this as well (e.g. BackgroundDRb)

--
Tony Arcieri
medioh.com

Louis-Philippe

unread,
Apr 27, 2009, 10:59:15 AM4/27/09
to
[Note: parts of this message were removed to make it a legal post.]

If you are looking for a process pool or similar,
http://abundance.rubyforge.org/
it forks an n amount of concurrent process workers then seed/harvest them by
unix sockets communication,


2009/4/26 Tony Arcieri <to...@medioh.com>

0 new messages