Google AppEngine

Google Managed VMs で nginx を建ててみた

今更ですが、Managed VMs で nginx を建ててみました。GAE に Docker が使えるというのはとても便利ですね。GCE より手軽に使えるのが魅力です。 github appengine-nginx-hello を頼りに試しに nginx を動かしてみたところ、こちらの github のページに古い…

Google Cloud Pub/Sub 使ってみた

Cloud Pub/Sub - Reliable Enterprise Messaging in the Cloud Cloud Pub/Sub - Reliable Enterprise Messaging in the Cloud — Google Cloud PlatformGoogle Cloud Pub/Sub が公開ベータになったので、早速使ってみました。 一見、Amazon SNS と競合するサ…

AppEngine について色々

AppEngine は無課金ではソケットが使えないため、そのままでは HttpClient が使えません。それで困ってる方は GAEClientConnection GAEConnectionManager を使いましょう! new DefaultHttpClient(new GAEConnectionManager()); といった感じで、コンストラ…

Heroku+Quartz Scheduler という選択肢

AppEngine、便利ですよね。 特に秀逸なのが、cron.xml !! <cron> <url>/cron/honki</url> <description>honki</description> <schedule>every monday,tuesday,wednesday,thursday,friday of month 00:00</schedule> <timezone>Asia/Tokyo</timezone> </cron> <cron> <url>/cron/weather</url> <description>weather forecast</description> …</cron>