Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Basic threading

i am completley new to threading.

Basically i am querying many databases and have made a custom loading form to indicate the data is loading. However this locks up(my loading form page) when running the same time as my database code. What do i need to research in order to complete this functionality ?

Thanks

like image 612
tom Avatar asked Feb 03 '11 16:02

tom


People also ask

What is the threading?

In threading, a thin cotton or polyester thread is doubled, then twisted. It is then rolled over areas of unwanted hair, plucking the hair at the follicle level. Unlike tweezing, where single hairs are pulled out one at a time, threading can remove short rows of hair.

Is threading safe?

Thread lifts are low risk, thanks to how noninvasive they are. There is virtually no risk of scarring, severe bruising, bleeding or other complications after having a thread lift. In rare cases, patients may experience irritation, infection or their sutures becoming visible under their skin.

What is threading in Python?

Threading in python is used to run multiple threads (tasks, function calls) at the same time. Note that this does not mean that they are executed on different CPUs. Python threads will NOT make your program faster if it already uses 100 % CPU time. In that case, you probably want to look into parallel programming.


1 Answers

Have a look at BackgroundWorker.

like image 165
Matt Davis Avatar answered Oct 07 '22 02:10

Matt Davis