<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><channel rdf:about="https://www.bibsonomy.org/user/bugsbunny/framework"><title>BibSonomy bookmarks for /user/bugsbunny/framework</title><link>https://www.bibsonomy.org/user/bugsbunny/framework</link><description>BibSonomy RSS Feed for /user/bugsbunny/framework</description><items><rdf:Seq><rdf:li rdf:resource="http://qcu.be/"/><rdf:li rdf:resource="http://static.springsource.org/docs/Spring-MVC-step-by-step/"/><rdf:li rdf:resource="http://devzone.zend.com/node/view/id/91"/></rdf:Seq></items></channel><item rdf:about="http://qcu.be/"><title>QCubed | A Rapid Prototyping PHP5 Framework</title><description>QCubed is a PHP framework for rapid web development. Building on top of jQuery, with OOP at its core, QCubed provides a powerful solution for building database-driven Web 2.0 applications.</description><link>http://qcu.be/</link><dc:creator>bugsbunny</dc:creator><dc:date>2010-06-08T16:47:06+02:00</dc:date><dc:subject>dev development entwicklung framework php php5 prototyping qcubed rapid web webseiten </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;QCubed is a PHP framework for rapid web development. Building on top of jQuery, with OOP at its core, QCubed provides a powerful solution for building database-driven Web 2.0 applications.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/dev"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/development"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/entwicklung"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/framework"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/php"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/php5"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/prototyping"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/qcubed"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/rapid"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/web"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/webseiten"/></rdf:Bag></taxo:topics></item><item rdf:about="http://static.springsource.org/docs/Spring-MVC-step-by-step/"><title>Developing a Spring Framework MVC application step-by-step</title><description></description><link>http://static.springsource.org/docs/Spring-MVC-step-by-step/</link><dc:creator>bugsbunny</dc:creator><dc:date>2009-09-08T15:37:40+02:00</dc:date><dc:subject>development entwicklung framework java mvc software spring tools web </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2009-09-08T15:37:40+02:00&#034; href=&#034;http://static.springsource.org/docs/Spring-MVC-step-by-step/&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://static.springsource.org/docs/Spring-MVC-step-by-step/&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/development"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/entwicklung"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/framework"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/java"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/mvc"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/software"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/spring"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tools"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/web"/></rdf:Bag></taxo:topics></item><item rdf:about="http://devzone.zend.com/node/view/id/91"><title>Roll Your Own Search Engine with Zend_Search_Lucene</title><description>Introduction

On several occasions developing database-driven web applications, I&#039;ve been approached by clients who want Google-style search implemented at the last minute of the development cycle. Usually this leads to using some canned script that crawls the website, or a hacked up search function that uses the database but either returns too many results or none at all. On top of that, the queries performed are too many or too slow.

Until now, most developers have been forced to use relational databases to power search, install extra component packages, or seek out other non-php solutions. The problem with using a relational database, such as MySql&#039;s fulltext indexing, is that scalability problems crop up as your search criteria becomes more complicated.

One of the features that sets the Zend Framework apart from the others is the inclusion of a decent search module. Zend_Search_Lucene is a php port of the Apache Lucene project, a full-text search engine framework. Zend_Search_Lucene promises a simple way to add search functionality to an application without requiring additional php extensions or even a database.

Zend_Search_Lucene overcomes the usual limitations of relational databases with features such as fast indexing, ranked result sets, a powerful but simple query syntax, and the ability to index multiple fields. Better still, a Zend_Search_Lucene index can live happily alongside your relational database to provide fast searching but without duplicating the effort of storing all of your data twice. In this tutorial, I&#039;ll show you how to use Zend_Search_Lucene to index and search some RSS feeds.</description><link>http://devzone.zend.com/node/view/id/91</link><dc:creator>bugsbunny</dc:creator><dc:date>2008-09-22T14:44:46+02:00</dc:date><dc:subject>engine framework howto lucene php search searchengine suchen suchmaschine zend </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;Introduction

On several occasions developing database-driven web applications, I&amp;#039;ve been approached by clients who want Google-style search implemented at the last minute of the development cycle. Usually this leads to using some canned script that crawls the website, or a hacked up search function that uses the database but either returns too many results or none at all. On top of that, the queries performed are too many or too slow.

Until now, most developers have been forced to use relational databases to power search, install extra component packages, or seek out other non-php solutions. The problem with using a relational database, such as MySql&amp;#039;s fulltext indexing, is that scalability problems crop up as your search criteria becomes more complicated.

One of the features that sets the Zend Framework apart from the others is the inclusion of a decent search module. Zend_Search_Lucene is a php port of the Apache Lucene project, a full-text search engine framework. Zend_Search_Lucene promises a simple way to add search functionality to an application without requiring additional php extensions or even a database.

Zend_Search_Lucene overcomes the usual limitations of relational databases with features such as fast indexing, ranked result sets, a powerful but simple query syntax, and the ability to index multiple fields. Better still, a Zend_Search_Lucene index can live happily alongside your relational database to provide fast searching but without duplicating the effort of storing all of your data twice. In this tutorial, I&amp;#039;ll show you how to use Zend_Search_Lucene to index and search some RSS feeds.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/engine"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/framework"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/howto"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/lucene"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/php"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/search"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/searchengine"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/suchen"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/suchmaschine"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/zend"/></rdf:Bag></taxo:topics></item></rdf:RDF>