プログラム 1 は、いくつかのジョブをテーブル job_table に挿入します。
プログラム 2 は次のことを行う必要があります。
1. get the job from the table
2. handle the job
-> this needs to be multi-threaded (because each job involves urllib waiting time, which should run in parallel)
3. insert the results into my_other_table, commiting the result
これを実装するための良い(標準的な?)方法はありますか?問題は、1 つのスレッド内でコミットすると、他のスレッドもコミットされることです。