Новые книги

Дэвид Аакер – одна из самых крупных фигур мирового брендинга. Его книга – результат многолетней успешной практики – представляет собой двадцать простых, эффективных, доступных принципов достижения успеха. Никаких абстрактных рекомендаций и советов, только конкретные тактики, схемы, концепции и приемы, результатом реализации которых становится разработка, расширение и продвижение сильного, стабильного, конкурентоспособного бренда.
The agile model of software development has taken the world by storm. Now, in Agile Software Development, Second Edition, one of agiles leading pioneers updates his Jolt Productivity award-winning book to reflect all that?s been learned about agile development since its original introduction.

Alistair Cockburn begins by updating his powerful model of software development as a ?cooperative game of invention and communication.? Among the new ideas he introduces: harnessing competition without damaging collaboration; learning lessons from lean manufacturing; and balancing strategies for communication. Cockburn also explains how the cooperative game is played in business and on engineering projects, not just software development

Next, he systematically illuminates the agile model, shows how it has evolved, and answers the questions developers and project managers ask most often, including

· Where does agile development fit in our organization?

· How do we blend agile ideas with other ideas?

· How do we extend agile ideas more broadly?

Cockburn takes on crucial misconceptions that cause agile projects to fail. For example, you?ll learn why encoding project management strategies into fixed processes can lead to ineffective strategy decisions and costly mistakes. You?ll also find a thoughtful discussion of the controversial relationship between agile methods and user experience design.

Cockburn turns to the practical challenges of constructing agile methodologies for your own teams. You?ll learn how to tune and continuously reinvent your methodologies, and how to manage incomplete communication. This edition contains important new contributions on these and other topics:

· Agile and CMMI

· Introducing agile from the top down

· Revisiting ?custom contracts?

· Creating change with ?stickers?

In addition, Cockburn updates his discussion of the Crystal methodologies, which utilize his ?cooperative game? as their central metaphor.

If you?re new to agile development, this book will help you succeed the first time out. If you?ve used agile methods before, Cockburn?s techniques will make you even more effective.

Серверы CGI/Командная строка

Учебник РНР
НазадГлава 2. Инсталяция Вперёд

Серверы CGI/Командная строка

По умолчанию РНР строится как CGI-программа. При этом создаётся интерпретатор командной строки, который может использоваться для процессинга CGI или для не-web-скриптинга PHP.
Если ваш web-сервер поддерживает модули, вам следует избрать это решение для повышения производительности. Однако CGI-версия даёт пользователям Apache возможность запускать разные страницы PHP под разными user-ids (идентификаторами пользователей). Не забудьте прочитать Главу о безопасности, если запускаете PHP как CGI.

Тестирование

Если ваш PHP построен как CGI-программа, вы можете протестировать её, напечатав make test. Всегда полезно проверить ваше построение/build. Тут вы сможете определить проблемы с PHP на вашей платформе, вместо того чтобы столкнуться с ними впоследствии.

Benchmarking/Испытание

Если вы построили PHP 3 как CGI-программу, вы можете разметить её построение, введя make bench. Обратите, внимание, что, если Safe Mode включён по умолчанию/on, benchmark не сможет завершиться, если займёт больше разрешённых 30 секунд. Это из-за того, что set_time_limit() не может использоваться в режиме safe mode. Используйте установку конфигурации max_execution_time для управления этим интервалом времени в вашем собственном скрипте.
make bench игнорирует файл конфигурации.

Примечание: make bench возможна только для PHP 3.


НазадОглавление Вперёд
Установка на системах Windows ВверхСерверы Apache