Posts Tagged ‘Open Source’

Implementing RSS Feeds with new features of Spring 3

May 5th, 2010 by Roberto van der Linden
(http://blog.jteam.nl/2010/05/05/implementing-rss-feeds-with-new-features-of-spring-3/)

In this post I explain how we implemented the way we created the RSS feeds in a project and the challenges that we had during the set-up.

My colleague Jettro Coenradie explained in a previous post how you can create a feed using Rome and Spring 3, but didn’t elaborated on the Spring 3 part. I will explain how we used Spring 3 to create the feeds.

Read the rest of this entry »

Axon Framework 0.5 released

April 24th, 2010 by Allard Buijze
(http://blog.jteam.nl/2010/04/24/axon-framework-0-5-released/)

Today, I finalized the 0.5 release of the Axon Framework. There is quite a number of changes since the 0.4 version. The 0.5 version is a major step towards production readiness of the framework.

Besides some changes to existing building blocks, such as the event bus, which is now much more powerful, the 0.5 version also includes some new features.

Read on to find out more.

Read the rest of this entry »

Enterprise Search using Solr and Lucene

April 1st, 2010 by Bram Smeets
(http://blog.jteam.nl/2010/04/01/enterprise-search-using-solr-and-lucene/)

The Enterprise Search market has long been dominated by commercial vendors and their products (e.g. Autonomy and Fast). We at JTeam feel that this era is finally over. At least for certain customers and requirements, there is finally a good Open Source alternative: Apache Solr, which is the Enterprise Search server based on Apache Lucene. In this blog post we’ll give our view on enterprise search and explain how Lucene and Solr can help you realize your projects.

Read the rest of this entry »

Language analysis comparable to Fast / Endeca for Solr

March 30th, 2010 by Martijn van Groningen
(http://blog.jteam.nl/2010/03/30/language-analysis-comparable-fast-endeca-available-solr/)

Good, solid language analysis is a very important asset for the quality of your search results. It is one of the features that for instance Microsoft Fast and Endeca are using as one of their unique selling points. However, you can get the same powerful analysis when using Apache Solr to implement your search.

Read the rest of this entry »

Axon Framework – the CQRS framework for Java – version 0.4 released

February 21st, 2010 by Allard Buijze
(http://blog.jteam.nl/2010/02/21/axon-framework-the-cqrs-framework-for-java-version-0-4-released/)

logoLast week, I published the 0.4 release of the Axon Framework. Axon helps developers build high performance, scalable and extensible applications using the CQRS pattern. The 0.4 release is a major step towards 1.0, and includes transactional event handling, high-performance caching repositories and easy configuration of event sourcing support. Furthermore, we have also built a demo application that uses Flex to get real-time updates pushed from the server.

Read on to find out more.

Read the rest of this entry »

Free Java hosting with the Google App Engine

February 4th, 2010 by Tom van Zummeren
(http://blog.jteam.nl/2010/02/04/free-java-hosting-with-the-google-app-engine/)

Lately I have been looking into and playing around with the Google App Engine. In this post I want to give a little introduction to the Google App Engine, why it can be interesting and how to work with it.
Read the rest of this entry »

Spatial Lucene 2.0

December 31st, 2009 by Chris Male
(http://blog.jteam.nl/2009/12/31/spatial-lucene-2-0/)

In a number of blog entries we have spoken about the spatial search functionality that we have been developing here at Jteam. In the last two weeks, I have had a chance to contribute much of this work back to the Apache Lucene project with the goal of furthering the development of Lucene’s open source spatial search support. If you want to dive immediately into the code, then jump to LUCENE-2139, if you want more details, then read on.

Read the rest of this entry »

A new and improved Spatial Solr

November 18th, 2009 by Preeti Gholap
(http://blog.jteam.nl/2009/11/18/a-new-and-improved-spatial-solr/)

Introducing the Solr Spatial Plugin

What do a directory services company, a wholesaler of bathroom fittings,  a social events guide, an oceanographic data centre and the pan-European library initiative have in common? They all need to offer their clients the ability to search and filter results within a flexible geographic area, defined by the user.

With a variety of businesses needing to customize search results to the preferences of a narrowly targeted audience, there’s an increasing demand for incorporating geographical location information into standard search functionality.

In response, JTeam has recently launched the Solr Spatial Plugin (SSP): a free, standalone, enterprise-ready plugin enabling location based search, built on top of the open source project Apache Solr.

Read the rest of this entry »

JTeam Search Symposium – Session Topics

November 11th, 2009 by Bram Smeets
(http://blog.jteam.nl/2009/11/11/jteam-search-symposium-session-topics/)

Tomorrow, JTeam is hosting the second edition of our Search Symposium. The following two session (see read more / below) will be presented and will serve as input for the discussion afterward. If you are working in the search domain and would like to join us, sign up by sending an email to: signup@jteam.nl.
Hope to see you all there!

Read the rest of this entry »

Result grouping / Field Collapsing with Solr

October 20th, 2009 by Martijn van Groningen
(http://blog.jteam.nl/2009/10/20/result-grouping-field-collapsing-with-solr/)

In a number of search projects that I have done using Lucene and Solr there was a lot of almost identical data. From a user perspective, when searching the first result pages were full of documents that look very similar, for instance getting a full page of the same car model, where only the edition differs, when searching for a specific car brand. What actually is desired is to only show the different models. Then and only when a user is interested in a certain model, the user can view all the editions of the model by clicking on the result. We simply want to group our search result, based on some criteria. Although this is not support out-of-the-box with Lucene/Solr, luckily it is possible using a patch that I’ve created and contributed to Solr. This blog entry explains what result grouping (also known as field collapsing) is and how you can start using it in your own projects.

Read the rest of this entry »