Slashdot Mirror


Yahoo Becomes Apache Platinum Sponsor

jschauma writes "Yahoo published a press release announcing that it has become a platinum sponsor of the Apache Software Foundation. In their company blog, Yahoo points out their particular interest in the Apache projects Lucene and Hadoop, and that they have hired Doug Cutting, creator of both projects and VP at Apache. (Lucene powers the search on Wikipedia; Yahoo also provides hosting capacity to Wikimedia.)"

3 of 110 comments (clear)

  1. Go Yahoo by cumin · · Score: 5, Insightful

    I gave up on Yahoo many years ago and moved to Google in preference. More and more lately, with improved search results, useful information, less restrictive email, and now support for one of my favorite OSS projects, they lure me back.

    Keep up the good work Yahoo.

    --
    Back in my day when we chiseled our bits into stone and sent them by mule train from village to village...
  2. If Everyone by gbulmash · · Score: 3, Insightful

    I wonder what would happen if everyone who was using FOSS software like Apache actually supported it? I'm not talking sending your favorite Linux distro the cost of Vista Home Basic, but like $20 spread across your four or 5 favorite projects. I donated to OCAL earlier this year, but I really need to send a Christmas present to the guys at Inkscape. This story's a good reminder.

    - Greg

  3. Re:Lucene and Wikipedia by Titoxd · · Score: 3, Insightful

    Wikipedia's search is crapola, and everybody and their dog knows that. However, It is not because of limitations with Lucene; it is more caused by limitations with MySQL. The MediaWiki database backend stores the text of pages in an InnoDB database, and InnoDB was used because it provides more robustness during simultaneous read and write operations (or at least that is what I understood). However, InnoDB does not allow for the creation of full-text indices, like those needed for Lucene search; MyISAM databases are required for that. So, there is an expensive replication task from the text table to the search tables in MediaWiki.