允许在线存储游戏数据的免费服务?
我用 Java 创建了一个小游戏,我想添加玩家在线发布高分的功能。
我愿意自己编写服务器软件(现在使用 Ruby Mongrel 甚至 C++ 都很容易)。我只需要某种托管。我立即想到的一种解决方案是 Amazon EC2。但这对于我的需求来说有点贵。由于要求非常低(我什至不需要网站,只需要网络服务),我认为可能有更便宜的解决方案。
有谁知道有免费或便宜的此类服务提供商吗?
更新
对于那些感兴趣的人,这是我想出的解决方案:
- SliceHost
- 购买了域名
- C++ HTTP 服务器
- 基于 Poco HTTPServer
- 通过 Poco Data 使用 SQLite 数据库
- 服务器实现了 REST API 支持
- 游戏:我自己的俄罗斯方块克隆,用 Clojure
I have created a small game in Java and I would like to add the ability for a player to publish his highscores online.
I'm willing to write the server software myself (it's easy these days with Ruby Mongrel, or even C++). I just need to have some sort hosting. One solution that immediately comes to mind is Amazon EC2. But that's kind of expensive for my needs. Since the requirements are very minimal (I don't even need a website, just a web service) I think there may be a cheaper solution out there.
Does anyone know of a free or cheap provider for this kind of thing?
Update
For those interested, this is solution I came up with:
- a SliceHost
- purchased a domain name
- C++ HTTP server
- built upon the Poco HTTPServer
- uses SQLite database via Poco Data
- Server implements a REST API supporting
- game: my own Tetris clone written in Clojure
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像 Slicehost 或任何其他小型 VPS 提供商之类的东西可能会起作用。您甚至可以将其编写为小型应用程序并将其发布到 Google App Engine 上在一定程度上是免费的。
Something like Slicehost or any other small-scale VPS provider could probably work. You might even be able to write it as a small app and publish it on Google App Engine, which is free up to a certain point.
我想到了 Google 应用引擎:http://code.google.com/appengine/
google app engine comes to mind: http://code.google.com/appengine/