Good Books to Learn Threading - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html) +--- Forum: Bar (https://python-forum.io/forum-27.html) +--- Thread: Good Books to Learn Threading (/thread-5493.html) |
Good Books to Learn Threading - srosemond - Oct-07-2017 Any good books about multi threading in general? I come from a background of Java/C#, and we never covered multi-threading in school all that much. As a personal preference, I picked up Python and learning it as a hobby, and I would like to learn threading. My request isn't so much threading in Python, but multi threading in general. If you can request a book that uses Python, great, if not, doesn't matter, still post it. It should cover the what/why/how. In the meantime I was following these tutorials on Youtube (videos 26 - 31), can anyone give me some feedback, if these tutorials are good? RE: Good Books to Learn Threading - Larz60+ - Oct-07-2017 you can download http://greenteapress.com/wp/semaphores/ as a pdf file. which looks pretty good. Has sections for several languages (including python of course). RE: Good Books to Learn Threading - j.crater - Oct-09-2017 Nice book, thanks for sharing. Appendix A has a demonstration using Python. |