使用Maypole快速部署Web应用程序:第二部分
当我们上次离开我们英勇的Web开发者时,他已经成功地在11行代码中设置了一个在线销售目录。然而,现在他必须继续前进,将其转变为一个带有购物的销售网站...
当我们上次离开我们英勇的Web开发者时,他已经成功地在11行代码中设置了一个在线销售目录。然而,现在他必须继续前进,将其转变为一个带有购物的销售网站...
你有一个数据库。你有一个Web服务器。你有一个截止日期。无论是为新的企业建立电子商务店面,实现人力资源部门员工数据库的新前端,或者甚至提供一个整洁的方式来...
最近我们了解到Kake Pugh关于OpenGuides项目,这是一个基于wiki的协作城市指南系统;之前,我们了解到Brian Ingerson关于他的Kwiki wiki实现。指南、wiki、博客……这是软件工程中的新时尚...
Scratching Your Own Itch Some time ago I became intrigued with Digest authentication, which uses the same general mechanism as the familiar Basic authentication scheme but offers significantly more password security without requiring an SSL connection. At the time…
Last time, we looked at writing a simple Apache output filter - Apache::Clean - using the mod_perl 2.0 API. How did I know that the filter I presented really worked? I wrote a test suite for it, one that…
This article is about a new Perl module called CGI::Kwiki. With this module you can create a Wiki Web site in less than a minute. Now that’s quick. Or more appropriately, ``That’s Kwik!” If you’ve not heard of a…
Not too long ago, despite a relative dearth of free tuits, I decided that I had put off my investigation of mod_perl 2.0 for too long - it was time to really start kicking the tires and tinkering with…
Stas Bekman is a coauthor of O’Reilly’s upcoming Practical mod_perl. It’s important to be able to monitor your production system’s health. You want to monitor the memory and file system utilization, the system load, how much memory the processes…
在本文中,我们继续讨论如何在无需接触代码、购买新硬件或告诉演员的情况下优化您的网站性能。一些简单的httpd.conf配置更改可以极大地提高性能。选择MinSpareServers、MaxSpareServers和StartServers...
正确配置MinSpareServers、MaxSpareServers、StartServers、MaxClients和MaxRequestsPerChild参数非常重要。没有默认值。如果它们太低,那么您将无法充分利用系统的功能。如果它们太高,那么可能会...
在mod_perl中避免进行分叉是可取的,因为当您这样做时,您会分叉整个Apache服务器——锁、股票和桶。不仅您的Perl代码和Perl解释器会被复制,mod_ssl、mod_rewrite、...
Dave Rolsky和Ken Williams是《使用Mason在HTML中嵌入Perl》的作者。Mason是一个用于生成动态文本的强大框架,特别适用于创建复杂、功能丰富的网站。对于那些(希望是少数)人...
共享内存正如我们在上一篇文章中学到的,共享内存有助于我们在mod_perl中节省内存,从而获得巨大的速度提升;但我们也付出了大内存占用率的代价。我介绍了一些技术...
Sean M. Burke是《Perl & LWP入门》的作者。LWP(代表“Perl的WWW库”)是一组流行的Perl模块,用于访问网络数据。与大多数Perl模块发行版一样,LWP的每个组件模块...