タグ: gae

Google App Engine で Go言語が使用可能になっていた

投稿者:isc_blog

日本語のページでは「Go!」の表示はまだ見えないんですが・・・

GAE日本語ページ

GAE日本語ページ

英語のページにはしっかりと「Go!」の表記があります!

GAE英語ページ

GAE英語ページ

App Engine Go Overview
まだ、Experimental(実験)のようですが、覚えたいなぁ~

Getting Started:Go
・・・というわけで、ここからスタートしてみます。

2011年5月31日

GAEのcron設定(覚え書き)

投稿者:isc_blog

Java 用の cron を使用したスケジュール タスク

<?xml version="1.0" encoding="UTF-8"?>
<cronentries>
  <cron>
    <url>/recache</url>
    <description>Repopulate the cache every 2 minutes</description>
    <schedule>every 2 minutes</schedule>
  </cron>
  <cron>
    <url>/weeklyreport</url>
    <description>Mail out a weekly report</description>
    <schedule>every monday of month 08:30</schedule>
    <timezone>America/New_York</timezone>
  </cron>
</cronentries>

シンプルなスケジュール指定方法(<schedule>~</schedule>内の記述
every 5 minutes
every 12 hours
2nd,third mon,wed,thu of march 17:00
every monday of month 09:00
1st monday of sep,oct,nov 17:00

さらに詳細な分岐設定もOK・・・
(“every”|ordinal) (days) “of” (monthspec) (time)
など・・・
あとはリンク先を見るべしw

2011年5月5日