Tagged Questions

3
votes
3answers
144 views

How long does it take to create 1 million threads in Haskell?

What I understand, Haskell have green threads. But how light weight are they. Is it possible to create 1 million threads? Or How long would it take for 100 000 threads?
1
vote
1answer
161 views

Tkinter locks python when Icon loaded and tk.mainloop in a thread.

Here's the test case... import Tkinter as tk import thread from time import sleep if __name__ == '__main__': t = tk.Tk() thread.start_new_thread(t.mainloop, ()) # …
4
votes
5answers
356 views

Which scripting languages support multi-core programming?

I have written a little python application and here you can see how Task Manager looks during a typical run. While the application is perfectly multithreaded, unsurprisingly it uses only one CPU …
0
votes
4answers
419 views

Using Thread.new to send email on rails

Hi guys, I've been sending emails on my application (ruby 1.8.7, rails 2.3.2) like this Thread.new{UserMailer.deliver_signup_notification(user)} Since ruby use green threads, there's any …