Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am chadwpry on github.
* I am chadwpry (https://keybase.io/chadwpry) on keybase.
* I have a public key whose fingerprint is 05A5 F443 783B 48A8 63E5 A093 892E 2FA7 1A92 6B30
To claim this, I am signing this object:
@search = Ultrasphinx::Search.new(:query => @query)
@search.run
@search.results
$ rake ultrasphinx:configure
$ rake ultrasphinx:index
$ rake ultrasphinx:daemon:start
$ rake solr:start
@criteria = params[:criteria]
if @criteria.size > 1
@result = Page.multi_solr_search @criteria, :models => [Brand, Leader, Career, Release]
if @result.nil?
@result = "Sorry no results for your search."
end
else
@result = "Please refine your search using more specific keywords."
end
@chadwpry
chadwpry / model
Created September 25, 2008 22:13
class Story < ActiveRecord::Base
# FULLTEXT INDEXING
is_indexed :fields => [
{:field => 'title', :sortable => true},
:content, :teaser, :category_id
],
:include => [
{:association_name => 'category', :field => 'name', :as => 'category_name'},
{:association_name => 'category', :field => 'parent_id'}
class Story < ActiveRecord::Base
# FULLTEXT INDEXING
is_indexed :fields => [
{:field => 'title', :sortable => true},
:content, :teaser, :category_id
],
:include => [
{:association_name => 'category', :field => 'name', :as => 'category_name'},
{:association_name => 'category', :field => 'parent_id'}
class Story < ActiveRecord::Base
acts_as_solr :facets => [:notes],
:fields => [
:name, :title,
:content, :display_name, :intro
]
end
class Admin::BaseController < ApplicationController
include AuthenticatedSystem
include SslRequirement
audit Affiliate, Category, Industry, Permission, Promotion
before_filter :login_required
before_filter :site_administrator?
class User < ActiveRecord::Base
...
define_index do
indexes [:first_name, :last_name], :as => :name, :sortable => true
indexes :email, :sortable => true
has created_at, updated_at
end