2005年12月16日 星期五 12:27
Zoom Quiet,limodou,您好! 非常感谢! 还有个问题想弄明白,我选择了Quixote作为web框架,那还需要apache服务器吗? 我选择的组合为:python+quixote+apache+mod_rewrite+mysql+squid 这样合理吗? 谢谢! ======= 2005-12-15 20:09:26 您在来信中写道:======= >在 05-12-15,Jamsi<jamsi at 163.com> 写道: >> 大家好 >> >> 现在老板让使用Python开发网站,请各位指示一下我该如何选择服务器运行环境以及IDE开发环境,非常感谢! >> >不用指示什么的吧! >http://wiki.woodpecker.org.cn/moin/PyWebAppFrameworks >浏览一下子,选择一个就好了,社区中有各种平台的fans ,选定后再交流哪! > >> >> james >> jamsi at 163.com >> >> >> _______________________________________________ >> python-chinese >> Post: send python-chinese at lists.python.cn >> Subscribe: send subscribe to python-chinese-request at lists.python.cn >> Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn >> Detail Info: http://python.cn/mailman/listinfo/python-chinese >> >> > > >-- ># Time is unimportant, only life important! >## 面朝开源,我心自由! >_______________________________________________ >python-chinese >Post: send python-chinese at lists.python.cn >Subscribe: send subscribe to python-chinese-request at lists.python.cn >Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn >Detail Info: http://python.cn/mailman/listinfo/python-chinese = = = = = = = = = = = = = = = = = = = = 致 礼! james
2005年12月16日 星期五 13:45
在 05-12-16,Jamsi<jamsi at 163.com> 写道: > Zoom Quiet,limodou,您好! > > 非常感谢! > 还有个问题想弄明白,我选择了Quixote作为web框架,那还需要apache服务器吗? > 我选择的组合为:python+quixote+apache+mod_rewrite+mysql+squid 挺好。python的许多 web 框架为了方便测试都提供自已的server,但一般在实际中都可以与其它的象apache一起使用。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
2005年12月16日 星期五 13:57
On 12/16/05, limodou <limodou at gmail.com> wrote: > 在 05-12-16,Jamsi<jamsi at 163.com> 写道: > > Zoom Quiet,limodou,您好! > > > > 非常感谢! > > 还有个问题想弄明白,我选择了Quixote作为web框架,那还需要apache服务器吗? > > 我选择的组合为:python+quixote+apache+mod_rewrite+mysql+squid > > 挺好。python的许多 web 框架为了方便测试都提供自已的server,但一般在实际中都可以与其它的象apache一起使用。 > 详细的可以问豆瓣哪!阿北是使用 Quixote 作为开发平台的,但是发布使用了Lighttpt """响应报头信息 - http://www.douban.com/ Date: Fri, 16 Dec 2005 05:50:34 GMT,Fri, 16 Dec 2005 05:50:34 GMT Status: 200 OK Content-Length: 10531 Content-Type: text/html; charset=utf-8 Expires: -1 Server: lighttpd/1.4.7 Connection: keep-alive """ 进一步的可以搜索一下子CZUG 升级后的系统架构说明, 实际上Python 为基础的大型站点开发和其它各种语言开发的大型站点都是类似的, 就是让擅长的系统作它擅长的事儿! 你的设计中,Apache 是进行静态页面发布的,squid是进行内容缓存的,Quixote是进行动态内容管理开发的,在动态内容和发布之间好象少了内容同步的系统? 其它的没有什么建议,因为好的网路,好的绝对不会是技术,而且整体设计思想………… -- # Time is unimportant, only life important! ## 面朝开源,我心自由!
2005年12月16日 星期五 14:20
感谢Zoom Quiet和limodou的回复! python+quixote+apache+mod_rewrite+mysql+squid 还有个mod_python,这样够了吗?不知道"在动态内容和发布之间好象少了内容同步的系统?"应该怎么理解? 另外douban.com的连接都是类似http://www.douban.com/review/1015120/ 这样的形式,是使用了mod_rewrite或path_info之类的设置还是直接生成了静态html页面? 谢谢! james 2005/12/16, Zoom Quiet <zoom.quiet at gmail.com>: > > On 12/16/05, limodou <limodou at gmail.com> wrote: > > 在 05-12-16,Jamsi<jamsi at 163.com> 写道: > > > Zoom Quiet,limodou,您好! > > > > > > 非常感谢! > > > 还有个问题想弄明白,我选择了Quixote作为web框架,那还需要apache服务器吗? > > > 我选择的组合为:python+quixote+apache+mod_rewrite+mysql+squid > > > > 挺好。python的许多 web 框架为了方便测试都提供自已的server,但一般在实际中都可以与其它的象apache一起使用。 > > > > 详细的可以问豆瓣哪!阿北是使用 Quixote 作为开发平台的,但是发布使用了Lighttpt > """响应报头信息 - http://www.douban.com/ > Date: Fri, 16 Dec 2005 05:50:34 GMT,Fri, 16 Dec 2005 05:50:34 GMT > Status: 200 OK > Content-Length: 10531 > Content-Type: text/html; charset=utf-8 > Expires: -1 > Server: lighttpd/1.4.7 > Connection: keep-alive > """ > 进一步的可以搜索一下子CZUG 升级后的系统架构说明, > 实际上Python 为基础的大型站点开发和其它各种语言开发的大型站点都是类似的, > 就是让擅长的系统作它擅长的事儿! > 你的设计中,Apache > 是进行静态页面发布的,squid是进行内容缓存的,Quixote是进行动态内容管理开发的,在动态内容和发布之间好象少了内容同步的系统? > > 其它的没有什么建议,因为好的网路,好的绝对不会是技术,而且整体设计思想………… > > > -- > # Time is unimportant, only life important! > ## 面朝开源,我心自由! > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051216/c9648d46/attachment.html
Zeuux © 2025
京ICP备05028076号