TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

What are the missing features in App Engine?

10 点作者 surendra_sedhai大约 14 年前
i think fulltext search is very fundamental and essential thing for a web application . i put a lot of effort to bring fulltext search to my site.<p>what are things which are essential for a web application is not present in App Engine?

8 条评论

miloco大约 14 年前
Ability to backup and restore the datastore via the dashboard. This is long overdue. I know the bulkloader exists but it's hardly ideal.
评论 #2414260 未加载
vanni大约 14 年前
SSL access on non-appspot.com domains, i.e. HTTPS on custom domains (on their roadmap, BTW)
europa大约 14 年前
Oauth or Authsub for appengine operations.<p>For example I want to deploy an app on appengine for a user without asking him his userid and a password.<p>Use case: User comes to a site. Search for available applications to install. Click install; give permission, application installed to his appengine account.
znt大约 14 年前
An API for accessing dynamic instances would be so useful for me. I'm developing a library with layered model storage (local cache,memcache, datastore) and cached query functionality on App Engine and using the power of local cache forces me to do some heavy cache invalidation.<p>If only there was a way to loop through all instances and refresh/invalidate values.<p>Here's the project if you're interested: <a href="https://github.com/ocanbascil/Performance-AppEngine" rel="nofollow">https://github.com/ocanbascil/Performance-AppEngine</a>
QuantumDoja大约 14 年前
1. At first for me it was a centralized database, If two apps want to access the same data, what are you going to do? We got around it by making an API.<p>2. A module for google checkout, I'm still trying to find a Python one for PayPal.<p>3. +1 For the HTTPS on custom domains<p>4. +1 To import and export databases
MatthewPhillips大约 14 年前
Not sure I'd call them essential but my 3 biggest pet peeves:<p>1) No threading. I feel they could find a way to sandbox these without hurting performance.<p>2) No support for the WebSocket API.<p>3) No support for Go. This one is a bigger mystery to me; seems like a win-win for the community and for Google.
评论 #2410906 未加载
评论 #2411048 未加载
runjake大约 14 年前
Stability &#38; speed. My apps randomly kick out various HTTP 500 errors. Sometimes database speed isn't so slick.
评论 #2411470 未加载
surendra_sedhai大约 14 年前
What about version controlling system in appengine?