Notes

Look at LocalSolr.

 http://groups.google.com/group/django-haystack/browse_thread/thread/5424b2e8748ae70b/56faf3ec2a744126?lnk=gst&q=geo&pli=1

haystack-wise, there's this guy's repos:

 https://github.com/sidmitra/django-haystack ( see  http://groups.google.com/group/django-haystack/browse_thread/thread/d0e23d45c0baa300/2298b6cf43389e18,  http://groups.google.com/group/django-haystack/browse_thread/thread/e3a70112ce944b00/ba7d3f264405ca25)

some info here:  https://github.com/toastdriven/django-haystack/issues#issue/168

Feature Ideas

search api

/api/search?q=luna&format=json

could return:

{
    "meta": {
        "limit": 0,
        "offset": 0,
        "total_count": 6
    }, 
    "objects": [
       {
          "id": 572,
          "map": "/api/map/Luna_Park_Cafe",
          "name": "Luna Park Cafe",
          "page_tags": "/api/page_tags/Luna_Park_Cafe",
          "resource_uri": "/api/page/Luna_Park_Cafe",
          "slug": "luna park cafe",
          "content-length": 3425
       },
       { ... }
    ]
}