Re: google adwords ruby client threadsafe

2013-08-15 Thread Alex Simion
If you check the Client Library Features for Ruby the thread safe feature is listed. There is a example created by Danial you can find it here: https://code.google.com/p/google-api-ads-ruby/source/browse/#git%2Fadwords_api%2Fexamples%2Fadwords_on_rails On Monday, August 12, 2013 4:40:22 PM UTC+1

Re: google adwords ruby client threadsafe

2013-08-14 Thread Danial Klimkin
Hello Michael, 1. The library code is thread-safe but there is no guarantees by the underlying libs. It is know to be used in multi-threaded environment successfully. 2. It is highly recommended to re-use authentication credentials on the client side. The most tricky part is avoiding several

google adwords ruby client threadsafe

2013-08-12 Thread Michael Ni
I am considering using JRuby with the google adwords ruby client. I want to do some faster and more efficient solution using threads to use the google adwords api. 1.) is the google adwords ruby client thread safe? 2.) in most cases of my code, i re-authenticate for each request. a.) Are th