我需要基于小型高性能编程语言 Web 框架构建的 feed 聚合器(需要建议)
我有不同的内容位于不同的子域,每个内容位于不同的框架和不同的数据库上。
Feed 聚合器的目的是:
- 聚合来自 子域,
- 存储数据 1 周,在快速嵌入式数据库中
- 生成 RSS
- ping 到
ping-o-matic
等 其他
(这就是为什么我希望聚合器构建在 Web 框架上;为了更容易扩展)。 RSS 用于附加统计数据。
目前我使用 PHP 和 sqlite3 实现了这一点,但我正在寻找其他(更高性能、更低占用空间)编程语言,希望它们能够更好地完成这项任务。
I have different contents sitting on different subdomain, each on different framework and different database.
The feed aggregator purpose is for:
- aggregate contents from the
subdomain, - store data for 1 week, in fast embedded database
- generate RSS
- ping to
ping-o-matic
and some
others
(thats why I want the aggregator built on web framework; for easier extensibility). The RSS is for additional statistics.
Currently I achieved this using PHP with sqlite3, but I'm looking for other (higher performance, lower footprint) programming language, hope they can performs even better for this task.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你使用 PHP,我认为最好是使用 Python。它像 PHP 一样是动态类型的,但速度更快(并且在许多其他因素上更好,至少对我来说)。
不管怎样,那里有很多聚合器和“爬虫”。
您可以使用 Lucene 平台(使用 Solr、Nutch)。
看看它。
If you worked it with PHP i think the best would be to use Python. It's dynamic typed like PHP but is faster (and better in many other factors, for me at least).
Anyway, there are lots of agregators and "crawlers" out there.
You could use the Lucene plataform (with Solr, Nutch).
Take a look at it.