
Search Made Simple
User Experience Matters
Your app has a ton of data, and your users need to find what they're looking for. In the age of Google, your users expect search to be smart, fast, and to get them exactly what they're looking for on the first try. Websolr can help.
Open Source
We use Solr, a rock-steady open source product backed by thousands of developers.
Well managed
With a metric ton of experience and an amazing team, we’re experts at managing hosted search.
Hosted in the Cloud
With our cloud hosting, we take the hassle and expense out of hosted search.
Built on Apache
Apache Solr is the time and battle-tested solution to getting a scalable, production-grade search engine up on your application. And because it’s open source it’s both affordable and customizable.

Spatial and faceted search
Use spatial search to find results near coordinates or to sort by distance. Use faceted search to browse or refine results based on values they have in common.
Language Support
Support for dozens of languages right out of the box with no extra work required. Sprechen Sie Deutsch? 日本語を話せますか?


Type-ahead find
With advanced auto-complete, spell correction, and more, you can provide your users with the world-class search they demand.
Built for Developers
gem 'rsolr'
rsolr = RSolr.connect :url => 'http://index.websolr.com/solr/a1b2c3d4e5f'
rsolr.add([
{ :id => 1, :name => "Hello, world", :body => "Two roads diverged in a wood..." },
{ :id => 2, :name => "Adventurous", :body => "I shall be telling this with a sigh..." }
])
rsolr.commit
search = rsolr.select :params => { :q => "keywords", :defType => "dismax", :qf => "name body" }
pip install django-haystack
from django.db import models
from django.contrib.auth.models import User
class Note(models.Model):
user = models.ForeignKey(User)
pub_date = models.DateTimeField()
title = models.CharField(max_length=200)
body = models.TextField()
def __unicode__(self):
return self.title
...
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
'URL': 'http://127.0.0.1:8983/solr'
# ...or for multicore...
# 'URL': 'http://127.0.0.1:8983/solr/mysite',
},
}
pip install SolrClient
>>> from SolrClient import SolrClient
>>> solr = SolrClient('http://localhost:8983/solr')
>>> res = solr.query('SolrClient_unittest',{
'q':'product_name:Lorem',
'facet':True,
'facet.field':'facet_test',
})
>>> res.get_results_count()
4
>>> res.get_facets()
{'facet_test': {'ipsum': 0, 'sit': 0, 'dolor': 2, 'amet,': 1, 'Lorem': 1}}
>>> res.get_facet_keys_as_list('facet_test')
['ipsum', 'sit', 'dolor', 'amet,', 'Lorem']
>>> res.docs
[{'product_name_exact': 'orci. Morbi ipsum
..... all the docs ....
'consectetur Mauris dolor Lorem adipiscing'}]
Add Solr to Wordpress
Read the full documentation >>
In this guide, we cover the basics of setting up a Websolr index to be used with Wordpress and the Solr for Wordpress plugin.

gem 'sunspot_rails'
class Post < ActiveRecord::Base
searchable do
text :title
text :content
end
end
class PostsController < ApplicationController
def index
@search = Post.search do
keywords params[:query]
end
@posts = @search.results
end
end
Add Solr to Drupal
Read the full documentation >>
In this guide, we cover the basics of setting up a Websolr index to be used with Drupal 7 and the Search API Solr module.

You found us. Let us find everything else.
Get started with a FREE Solr index. Need more info? Contact us.
We Keep Great Company

Blue Apron
One of the hottest startups around, Blue Apron customers rely on our search to find new recipes.

Offerup
OfferUp is a CraigsList competitor backed by $200M in funding. Their business is driven by our search.

Couchsurfing
Searching for a travel destination? Couchsurfing has your back, with a little help from us.