Code Archive Skip to content Google About Google Privacy Terms
Quick Start This guide will walk you through creating and deploying your first web application. For more details, please see the User's Guide. Installing the plugin Creating your first Web Application Running your Web Application locally Deploying your Web Application Installing the plugin If you are already familiar with installing Eclipse plugins, you can just use the update site URL below fo
AppEngineは、アクセスがあったときにアプリケーションを起動し、しばらくアクセスが無ければアプリケーションを終了させ、また次のリクエストで再起動するという仕組みを導入しています。 そのため、アプリケーションを起動(spin-up)する時間がとても重要になってきます。このspin-upの時間はpython(webapp)で60cpu_ms以下。(cpu_msはcpuが使う仮想的な時間ですがmsと同じ感じで捉えてもらってもとりあえずは大丈夫です)JavaのServletだと600cpu_msくらいです。PythonでもDjangoような大きなフレームワークだと1000cpu_msくらい(アプリによる)かかりますが、許容範囲内。JavaだとSlim3で1300cpu_ms、Springだと早くて7000cpu_msという感じで、Slim3がギリギリ許容範囲内でしょうか。ほんとうは、1000
This document discusses Mirah and Dubious, a staticly typed language and web framework. Mirah compiles to JVM bytecode for fast performance without a runtime. Dubious allows writing code similar to Rails and works on Google App Engine. Examples show Dubious controllers and templates are similar to Rails while models are simpler. It spins up quickly and works well on App Engine.Read less
At Google I/O this week, there have been a couple of Comet related announcements. Firstly, the Google Feed API is now live. The API allows you to pull in RSS/Atom based feeds, and now it does it in real time, well, as long as the feed is using PubSubHubbub on the server side. Secondly, Google App Engine was always restricted in how long requests could run for, making Comet not that viable. They ha
「正しい日本語?」とは 「正しい日本語?」は、色々な日本語の表現について 「正しい」か「間違っている」かを投票するサイトです。 ご利用は無料です。 最近の「正しい日本語?」 立ち上がれ日本 0 : 1 モンスターペアレントの親 0 : 3 違和感を感じる 0 : 3 0 : 0 ハイテク技術 0 : 5 老舗店 0 : 1 イントラネット網 0 : 2 携帯モバイル端末 1 : 2 内定が決まる 2 : 6 新商品のリニューアル 0 : 2 射程距離 1 : 1 返事を返す 0 : 2 思いがけないハプニング 1 : 1 不快感を感じる 1 : 1 お湯を沸かす 4 : 1 入れた手のお茶 0 : 3 過半数を超える 2 : 2 ダントツの1位 2 : 1 排気ガス 5 : 1 余分な贅肉 贅=余分 1 : 1 私をつきうごかした衝動 「衝き動かした」なので重言 0 : 1
Charles Oliver Nutter Java, Ruby, and JVM guy trying to make sense of it all JRuby has become notorious among Ruby implementations for having a slow startup time. Some of this is the JVM's fault, since it doesn't save JIT products and often just takes a long time to boot and get going. Some of this is JRuby's fault, though we work very hard to eliminate startup bottlenecks once they're reported an
Google App Engine上でアプリを作りはじめて約二ヶ月。いろいろと分かって来たこともあるので、自分へのメモも含めてまとめてみる。まずは、Datastoreの話から。 なによりも大切なのはデータベースの設計 あたりまえと言えばあたりまえの話だが、App Engine上でアプリを作る上でもっとも大切なこと(=頭を使うべきところ)は、データベースの設計である。特にリレーショナル・データベース(RDB)上でのアプリ作りに慣れた人には、大きな「発想の転換」が必要なので、ここは注意が必要。 特に絶対にやっては行けないのは、 将来RDB上へ移行できるようにレイヤーを作って、その上にアプリを作る RDB上に作ったアプリをデータモデルを大幅に変更せずにApp Engine上に移植する RDBを前提に設計されたフレームワークをApp Engine上に載せて、その上にアプリを作る など。App En
GitHub Wiki: https://github.com/rietveld-codereview/rietveld/wiki Google Group: http://groups.google.com/group/codereview-discuss This project shows how to create a somewhat substantial web application using Django on Google App Engine. It requires Python 2.7 and Django version 1.3 (although a previous version using Python 2.5 and Django 1.2 can still be found in the py25 branch in the repository)
一つ前の富豪プログラミングのエントリーともつながる話だが、Google App Engineは「ちゃんとスケーラビリティを考慮してアプリケーションを作るには何に気をつけなければならないか」を勉強するには絶好の環境だ。そこで今回は、その「ケチな大富豪的なプログラミング」の実践編。 Google App Engine上のアプリをいくつか書いているうちに、必要に迫られて自然発生的にできてきたのが、gdispatchという数十行のコードからなる小さなモジュール(ソースコードはgithubに置いてある)。これをGoogle App Engineに標準で付いて来るwebappと組み合わせてフレームワークとして使っている。 gdispatchを設計する上で重視したのは、 (1)Google App Engine上でのアプリの開発を効率化する上で「明らかにこれがあると開発効率が格段に向上する」というもの以
Google App Engineを使った最初の作品 Tiny Message (http://tinymsg.appspot.com)をリリースしてまだ20時間経っていないが、設計の過程でいろいろと学べたことがある。 その中でも一番収穫として大きいのは、「Google App Engineを使えば、リニアにスケールするサービスを作ることが可能」だということが実感できたこと。 もちろん、Google App Engine上に作ったからと言ってすべてのアプリがリニアにスケールするわけではなし、どんなアプリでもそう作れるわけではない。Entity Groupの構成を間違えればそこがボトルネックになるし、Queryの二重ループなんかを書いたら、すぐにタイムアウトしてしまう。 リニアなスケーラビリティを持つDatastoreの上で作るとは言え、やはりDatastoreの仕組みをちゃんと理解してデー
株式会社鳥人間 郷田まり子 2009/10/22 ついにプレビュー公開が始まった、リアルタイム&(ポーリングによる)擬似プッシュ型のコミュニケーションとコラボレーションのプラットフォーム「Google Wave」の特集です。その概要と「Gadget」「Embed」「Robot」という3つの拡張APIを使ったWaveの作り方を徹底解説します Google WaveのRobotをGoogle App Engineに作る 前編の「プレビュー公開が始まったGoogle Wave「超」入門」では、Google Waveの概要や、クライアントサイドのGadgetとEmbedについて解説しました。後編の今回は、クラウドサイドのRobotについて解説します。 前編でも説明しましたが、Robotは一般参加者と同列の参加者として、Wave上で発言をしたり、画像を張ったりと、自動でコミュニケーションするソフトウ
どうやら、やっとGAEに登録したアプリを削除する機能が提供されたようです。 Delete an App - Our developers have been quite vocal with their desire to delete an App Engine application once it is no longer used (It's one of the top 5 most requested features on our issue tracker). Well, this feature is now available via the Admin Console! Just visit the Application Settings page for more information. Please be careful when deleting an ap
News, notes, tips and tricks from the Google App Engine Team At Google, we've learned through experience to treat everything with healthy skepticism. We expect that servers, racks, shared GFS cells, and even entire datacenters will occasionally go down, sometimes with little or no warning. This has led us to try as hard as possible to design our products to run on multiple servers, multiple cells,
TwitterでGoogle App Engineの記事を見つけました。 http://www.bubblefoundry.com/blog/2009/05/openid-and-oauth-on-app-engine/ とりあえずこの人はGoogle App Engine上でDjangoのライブラリを使ってOpenIDとOAuthでgDataの・・・ Googleのドキュメントを見てみます。 http://code.google.com/intl/ja/apis/accounts/docs/OpenID.html これ、Googleをサンプルに使ったHybrid Protocolの説明ドキュメントとしても素晴らしいできなんじゃないかと思います。 これ、少し訳して参考にしよう。。。
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く