sunspot_neo4j 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.rspec +2 -0
- data/Gemfile +22 -0
- data/LICENSE.txt +20 -0
- data/README.md +42 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/lib/sunspot_neo4j.rb +3 -0
- data/lib/sunspot_neo4j/neo4j_adapter.rb +48 -0
- data/spec/dummy/Gemfile +34 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/models/recipe.rb +9 -0
- data/spec/dummy/app/views/layouts/application.html.erb +13 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +32 -0
- data/spec/dummy/config/boot.rb +3 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +38 -0
- data/spec/dummy/config/environments/production.rb +76 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +56 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config/sunspot.yml +11 -0
- data/spec/dummy/db/seeds.rb +7 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/lib/tasks/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/log/sunspot-solr-test.log +365 -0
- data/spec/dummy/log/test.log +54 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/robots.txt +5 -0
- data/spec/dummy/vendor/assets/stylesheets/.keep +0 -0
- data/spec/neo4j_adapter_spec.rb +44 -0
- data/spec/spec_helper.rb +104 -0
- data/sunspot_neo4j.gemspec +133 -0
- metadata +273 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
|
+
|
12
|
+
# Show full error reports and disable caching.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send.
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger.
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
23
|
+
# This option may cause significant delays in view rendering with a large
|
24
|
+
# number of complex assets.
|
25
|
+
config.assets.debug = true
|
26
|
+
|
27
|
+
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
28
|
+
# yet still be able to expire them through the digest params.
|
29
|
+
config.assets.digest = true
|
30
|
+
|
31
|
+
# Adds additional error checking when serving assets at runtime.
|
32
|
+
# Checks for improperly declared sprockets dependencies.
|
33
|
+
# Raises helpful error messages.
|
34
|
+
config.assets.raise_runtime_errors = true
|
35
|
+
|
36
|
+
# Raises error for missing translations
|
37
|
+
# config.action_view.raise_on_missing_translations = true
|
38
|
+
end
|
@@ -0,0 +1,76 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# Code is not reloaded between requests.
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Eager load code on boot. This eager loads most of Rails and
|
8
|
+
# your application in memory, allowing both threaded web servers
|
9
|
+
# and those relying on copy on write to perform better.
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
11
|
+
config.eager_load = true
|
12
|
+
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
14
|
+
config.consider_all_requests_local = false
|
15
|
+
config.action_controller.perform_caching = true
|
16
|
+
|
17
|
+
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
+
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
+
# For large-scale production use, consider using a caching reverse proxy like
|
20
|
+
# NGINX, varnish or squid.
|
21
|
+
# config.action_dispatch.rack_cache = true
|
22
|
+
|
23
|
+
# Disable serving static files from the `/public` folder by default since
|
24
|
+
# Apache or NGINX already handles this.
|
25
|
+
config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
26
|
+
|
27
|
+
# Compress JavaScripts and CSS.
|
28
|
+
config.assets.js_compressor = :uglifier
|
29
|
+
# config.assets.css_compressor = :sass
|
30
|
+
|
31
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
32
|
+
config.assets.compile = false
|
33
|
+
|
34
|
+
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
35
|
+
# yet still be able to expire them through the digest params.
|
36
|
+
config.assets.digest = true
|
37
|
+
|
38
|
+
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
39
|
+
|
40
|
+
# Specifies the header that your server uses for sending files.
|
41
|
+
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
42
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
43
|
+
|
44
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
45
|
+
# config.force_ssl = true
|
46
|
+
|
47
|
+
# Use the lowest log level to ensure availability of diagnostic information
|
48
|
+
# when problems arise.
|
49
|
+
config.log_level = :debug
|
50
|
+
|
51
|
+
# Prepend all log lines with the following tags.
|
52
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
53
|
+
|
54
|
+
# Use a different logger for distributed setups.
|
55
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
56
|
+
|
57
|
+
# Use a different cache store in production.
|
58
|
+
# config.cache_store = :mem_cache_store
|
59
|
+
|
60
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
61
|
+
# config.action_controller.asset_host = 'http://assets.example.com'
|
62
|
+
|
63
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
64
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
65
|
+
# config.action_mailer.raise_delivery_errors = false
|
66
|
+
|
67
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
68
|
+
# the I18n.default_locale when a translation cannot be found).
|
69
|
+
config.i18n.fallbacks = true
|
70
|
+
|
71
|
+
# Send deprecation notices to registered listeners.
|
72
|
+
config.active_support.deprecation = :notify
|
73
|
+
|
74
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
75
|
+
config.log_formatter = ::Logger::Formatter.new
|
76
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static file server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_files = true
|
17
|
+
config.static_cache_control = 'public, max-age=3600'
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Randomize the order test cases are executed.
|
35
|
+
config.active_support.test_order = :random
|
36
|
+
|
37
|
+
# Print deprecation notices to the stderr.
|
38
|
+
config.active_support.deprecation = :stderr
|
39
|
+
|
40
|
+
# Raises error for missing translations
|
41
|
+
# config.action_view.raise_on_missing_translations = true
|
42
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Add additional assets to the asset load path
|
7
|
+
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
+
|
9
|
+
# Precompile additional assets.
|
10
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
11
|
+
# Rails.application.config.assets.precompile += %w( search.js )
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,56 @@
|
|
1
|
+
Rails.application.routes.draw do
|
2
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
3
|
+
# See how all your routes lay out with "rake routes".
|
4
|
+
|
5
|
+
# You can have the root of your site routed with "root"
|
6
|
+
# root 'welcome#index'
|
7
|
+
|
8
|
+
# Example of regular route:
|
9
|
+
# get 'products/:id' => 'catalog#view'
|
10
|
+
|
11
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
12
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
13
|
+
|
14
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
15
|
+
# resources :products
|
16
|
+
|
17
|
+
# Example resource route with options:
|
18
|
+
# resources :products do
|
19
|
+
# member do
|
20
|
+
# get 'short'
|
21
|
+
# post 'toggle'
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
# collection do
|
25
|
+
# get 'sold'
|
26
|
+
# end
|
27
|
+
# end
|
28
|
+
|
29
|
+
# Example resource route with sub-resources:
|
30
|
+
# resources :products do
|
31
|
+
# resources :comments, :sales
|
32
|
+
# resource :seller
|
33
|
+
# end
|
34
|
+
|
35
|
+
# Example resource route with more complex sub-resources:
|
36
|
+
# resources :products do
|
37
|
+
# resources :comments
|
38
|
+
# resources :sales do
|
39
|
+
# get 'recent', on: :collection
|
40
|
+
# end
|
41
|
+
# end
|
42
|
+
|
43
|
+
# Example resource route with concerns:
|
44
|
+
# concern :toggleable do
|
45
|
+
# post 'toggle'
|
46
|
+
# end
|
47
|
+
# resources :posts, concerns: :toggleable
|
48
|
+
# resources :photos, concerns: :toggleable
|
49
|
+
|
50
|
+
# Example resource route within a namespace:
|
51
|
+
# namespace :admin do
|
52
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
53
|
+
# # (app/controllers/admin/products_controller.rb)
|
54
|
+
# resources :products
|
55
|
+
# end
|
56
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: 314711f4121e3966f690b15c10709ca24fbf03288795279bcf1950759fd7317a368b2184ec00189eed1c89780230abbfa02b34a2fb8e88b3f6df8d6069452dc7
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 0937ee4db0e4bb533e666e30fc35a8be5a07c8e8fd139a6770610bec2ae6b778dcaccd8f9470c7951b9a8423c5d0204e31721968e28ccb764fd91ac6f0ae5183
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
7
|
+
# Mayor.create(name: 'Emanuel', city: cities.first)
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,365 @@
|
|
1
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.servlet.SolrDispatchFilter init
|
2
|
+
INFO: SolrDispatchFilter.init()
|
3
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrResourceLoader locateSolrHome
|
4
|
+
INFO: JNDI not configured for solr (NoInitialContextEx)
|
5
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrResourceLoader locateSolrHome
|
6
|
+
INFO: using system property solr.solr.home: /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr
|
7
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CoreContainer$Initializer initialize
|
8
|
+
INFO: looking for solr.xml: /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/solr.xml
|
9
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CoreContainer <init>
|
10
|
+
INFO: New CoreContainer 631250338
|
11
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CoreContainer load
|
12
|
+
INFO: Loading CoreContainer using Solr Home: '/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/'
|
13
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrResourceLoader <init>
|
14
|
+
INFO: new SolrResourceLoader for directory: '/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/'
|
15
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
16
|
+
INFO: Setting socketTimeout to: 0
|
17
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
18
|
+
INFO: Setting urlScheme to: http://
|
19
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
20
|
+
INFO: Setting connTimeout to: 0
|
21
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
22
|
+
INFO: Setting maxConnectionsPerHost to: 20
|
23
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
24
|
+
INFO: Setting corePoolSize to: 0
|
25
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
26
|
+
INFO: Setting maximumPoolSize to: 2147483647
|
27
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
28
|
+
INFO: Setting maxThreadIdleTime to: 5
|
29
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
30
|
+
INFO: Setting sizeOfQueue to: -1
|
31
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.handler.component.HttpShardHandlerFactory getParameter
|
32
|
+
INFO: Setting fairnessPolicy to: false
|
33
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.client.solrj.impl.HttpClientUtil createClient
|
34
|
+
INFO: Creating new http client, config:maxConnectionsPerHost=20&maxConnections=10000&socketTimeout=0&connTimeout=0&retry=false
|
35
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CoreContainer load
|
36
|
+
INFO: Registering Log Listener
|
37
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CoreContainer create
|
38
|
+
INFO: Creating SolrCore 'default' using instanceDir: /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/.
|
39
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrResourceLoader <init>
|
40
|
+
INFO: new SolrResourceLoader for directory: '/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./'
|
41
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CoreContainer create
|
42
|
+
INFO: Creating SolrCore 'development' using instanceDir: /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/.
|
43
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CoreContainer create
|
44
|
+
INFO: Creating SolrCore 'test' using instanceDir: /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/.
|
45
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrResourceLoader <init>
|
46
|
+
INFO: new SolrResourceLoader for directory: '/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./'
|
47
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrResourceLoader <init>
|
48
|
+
INFO: new SolrResourceLoader for directory: '/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./'
|
49
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrConfig <init>
|
50
|
+
INFO: Using Lucene MatchVersion: LUCENE_41
|
51
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrConfig <init>
|
52
|
+
INFO: Using Lucene MatchVersion: LUCENE_41
|
53
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrConfig <init>
|
54
|
+
INFO: Using Lucene MatchVersion: LUCENE_41
|
55
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrConfig <init>
|
56
|
+
INFO: Loaded SolrConfig: solrconfig.xml
|
57
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrConfig <init>
|
58
|
+
INFO: Loaded SolrConfig: solrconfig.xml
|
59
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrConfig <init>
|
60
|
+
INFO: Loaded SolrConfig: solrconfig.xml
|
61
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
62
|
+
INFO: Reading Solr Schema
|
63
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
64
|
+
INFO: Reading Solr Schema
|
65
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
66
|
+
INFO: Reading Solr Schema
|
67
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
68
|
+
INFO: Schema name=sunspot
|
69
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
70
|
+
INFO: Schema name=sunspot
|
71
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
72
|
+
INFO: Schema name=sunspot
|
73
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
74
|
+
INFO: default search field in schema is text
|
75
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
76
|
+
INFO: default search field in schema is text
|
77
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
78
|
+
INFO: default search field in schema is text
|
79
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
80
|
+
INFO: query parser default operator is AND
|
81
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
82
|
+
INFO: query parser default operator is AND
|
83
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
84
|
+
INFO: query parser default operator is AND
|
85
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
86
|
+
INFO: unique key field: id
|
87
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
88
|
+
INFO: unique key field: id
|
89
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.schema.IndexSchema readSchema
|
90
|
+
INFO: unique key field: id
|
91
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore <init>
|
92
|
+
INFO: [test] Opening new SolrCore at /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./, dataDir=/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./test/data/
|
93
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore <init>
|
94
|
+
INFO: [development] Opening new SolrCore at /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./, dataDir=/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./development/data/
|
95
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore <init>
|
96
|
+
INFO: [default] Opening new SolrCore at /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./, dataDir=/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./default/data/
|
97
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore <init>
|
98
|
+
INFO: JMX monitoring not detected for core: development
|
99
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore <init>
|
100
|
+
INFO: JMX monitoring not detected for core: test
|
101
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore <init>
|
102
|
+
INFO: JMX monitoring not detected for core: default
|
103
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore initDirectoryFactory
|
104
|
+
INFO: solr.NRTCachingDirectoryFactory
|
105
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore initDirectoryFactory
|
106
|
+
INFO: solr.NRTCachingDirectoryFactory
|
107
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore initDirectoryFactory
|
108
|
+
INFO: solr.NRTCachingDirectoryFactory
|
109
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CachingDirectoryFactory get
|
110
|
+
INFO: return new directory for /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./development/data forceNew: false
|
111
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CachingDirectoryFactory get
|
112
|
+
INFO: return new directory for /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./test/data forceNew: false
|
113
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CachingDirectoryFactory get
|
114
|
+
INFO: return new directory for /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./default/data forceNew: false
|
115
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore getNewIndexDir
|
116
|
+
INFO: New index directory detected: old=null new=/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./test/data/index/
|
117
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore getNewIndexDir
|
118
|
+
INFO: New index directory detected: old=null new=/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./development/data/index/
|
119
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CachingDirectoryFactory get
|
120
|
+
INFO: return new directory for /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./test/data/index forceNew: false
|
121
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.SolrCore getNewIndexDir
|
122
|
+
INFO: New index directory detected: old=null new=/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./default/data/index/
|
123
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CachingDirectoryFactory get
|
124
|
+
INFO: return new directory for /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./development/data/index forceNew: false
|
125
|
+
Apr 16, 2015 7:49:19 PM org.apache.solr.core.CachingDirectoryFactory get
|
126
|
+
INFO: return new directory for /Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/./default/data/index forceNew: false
|
127
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
128
|
+
INFO: created /select: solr.SearchHandler
|
129
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
130
|
+
INFO: created /query: solr.SearchHandler
|
131
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
132
|
+
INFO: created /select: solr.SearchHandler
|
133
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
134
|
+
INFO: created /select: solr.SearchHandler
|
135
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
136
|
+
INFO: created /query: solr.SearchHandler
|
137
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
138
|
+
INFO: created /get: solr.RealTimeGetHandler
|
139
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
140
|
+
INFO: created /get: solr.RealTimeGetHandler
|
141
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
142
|
+
INFO: created /query: solr.SearchHandler
|
143
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
144
|
+
INFO: created /get: solr.RealTimeGetHandler
|
145
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
146
|
+
INFO: created /update: solr.UpdateRequestHandler
|
147
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
148
|
+
INFO: created /update: solr.UpdateRequestHandler
|
149
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
150
|
+
INFO: created /update: solr.UpdateRequestHandler
|
151
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
152
|
+
INFO: created /update/json: solr.JsonUpdateRequestHandler
|
153
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
154
|
+
INFO: created /update/json: solr.JsonUpdateRequestHandler
|
155
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
156
|
+
INFO: created /update/json: solr.JsonUpdateRequestHandler
|
157
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
158
|
+
INFO: created /update/csv: solr.CSVRequestHandler
|
159
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
160
|
+
INFO: created /update/csv: solr.CSVRequestHandler
|
161
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
162
|
+
INFO: created /update/csv: solr.CSVRequestHandler
|
163
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
164
|
+
INFO: adding lazy requestHandler: solr.extraction.ExtractingRequestHandler
|
165
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
166
|
+
INFO: adding lazy requestHandler: solr.extraction.ExtractingRequestHandler
|
167
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
168
|
+
INFO: adding lazy requestHandler: solr.extraction.ExtractingRequestHandler
|
169
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
170
|
+
INFO: created /update/extract: solr.extraction.ExtractingRequestHandler
|
171
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
172
|
+
INFO: created /update/extract: solr.extraction.ExtractingRequestHandler
|
173
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
174
|
+
INFO: adding lazy requestHandler: solr.FieldAnalysisRequestHandler
|
175
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
176
|
+
INFO: created /update/extract: solr.extraction.ExtractingRequestHandler
|
177
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
178
|
+
INFO: created /analysis/field: solr.FieldAnalysisRequestHandler
|
179
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
180
|
+
INFO: adding lazy requestHandler: solr.FieldAnalysisRequestHandler
|
181
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
182
|
+
INFO: adding lazy requestHandler: solr.DocumentAnalysisRequestHandler
|
183
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
184
|
+
INFO: adding lazy requestHandler: solr.FieldAnalysisRequestHandler
|
185
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
186
|
+
INFO: created /analysis/document: solr.DocumentAnalysisRequestHandler
|
187
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
188
|
+
INFO: created /analysis/field: solr.FieldAnalysisRequestHandler
|
189
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
190
|
+
INFO: created /analysis/field: solr.FieldAnalysisRequestHandler
|
191
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
192
|
+
INFO: adding lazy requestHandler: solr.DocumentAnalysisRequestHandler
|
193
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
194
|
+
INFO: adding lazy requestHandler: solr.DocumentAnalysisRequestHandler
|
195
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
196
|
+
INFO: created /admin/ping: solr.PingRequestHandler
|
197
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
198
|
+
INFO: created /analysis/document: solr.DocumentAnalysisRequestHandler
|
199
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
200
|
+
INFO: created /analysis/document: solr.DocumentAnalysisRequestHandler
|
201
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
202
|
+
INFO: created /admin/ping: solr.PingRequestHandler
|
203
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
204
|
+
INFO: created /debug/dump: solr.DumpRequestHandler
|
205
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
206
|
+
INFO: created /admin/ping: solr.PingRequestHandler
|
207
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
208
|
+
INFO: created /debug/dump: solr.DumpRequestHandler
|
209
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
210
|
+
INFO: created /debug/dump: solr.DumpRequestHandler
|
211
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
212
|
+
INFO: created /replication: solr.ReplicationHandler
|
213
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
214
|
+
INFO: created /replication: solr.ReplicationHandler
|
215
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
216
|
+
INFO: created /replication: solr.ReplicationHandler
|
217
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
218
|
+
INFO: created /mlt: solr.MoreLikeThisHandler
|
219
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
220
|
+
INFO: created /mlt: solr.MoreLikeThisHandler
|
221
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
222
|
+
INFO: created /mlt: solr.MoreLikeThisHandler
|
223
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
224
|
+
INFO: created /admin/: solr.admin.AdminHandlers
|
225
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
226
|
+
INFO: created /admin/: solr.admin.AdminHandlers
|
227
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.RequestHandlers initHandlersFromConfig
|
228
|
+
INFO: created /admin/: solr.admin.AdminHandlers
|
229
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
230
|
+
INFO: xsltCacheLifetimeSeconds=60
|
231
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
232
|
+
INFO: xsltCacheLifetimeSeconds=60
|
233
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
234
|
+
INFO: xsltCacheLifetimeSeconds=60
|
235
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
236
|
+
INFO: xsltCacheLifetimeSeconds=60
|
237
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
238
|
+
INFO: xsltCacheLifetimeSeconds=60
|
239
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
240
|
+
INFO: xsltCacheLifetimeSeconds=60
|
241
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
242
|
+
INFO: xsltCacheLifetimeSeconds=60
|
243
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
244
|
+
INFO: xsltCacheLifetimeSeconds=60
|
245
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.loader.XMLLoader init
|
246
|
+
INFO: xsltCacheLifetimeSeconds=60
|
247
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.search.SolrIndexSearcher <init>
|
248
|
+
INFO: Opening Searcher@51b9d4c main
|
249
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.search.SolrIndexSearcher <init>
|
250
|
+
INFO: Opening Searcher@52bd39c4 main
|
251
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.update.CommitTracker <init>
|
252
|
+
INFO: Hard AutoCommit: if uncommited for 15000ms;
|
253
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.update.CommitTracker <init>
|
254
|
+
INFO: Hard AutoCommit: if uncommited for 15000ms;
|
255
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.update.CommitTracker <init>
|
256
|
+
INFO: Soft AutoCommit: if uncommited for 5000ms;
|
257
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.update.CommitTracker <init>
|
258
|
+
INFO: Soft AutoCommit: if uncommited for 5000ms;
|
259
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
260
|
+
INFO: Initializing spell checkers
|
261
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
262
|
+
INFO: Initializing spell checkers
|
263
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.search.SolrIndexSearcher <init>
|
264
|
+
INFO: Opening Searcher@46916631 main
|
265
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.update.CommitTracker <init>
|
266
|
+
INFO: Hard AutoCommit: if uncommited for 15000ms;
|
267
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.update.CommitTracker <init>
|
268
|
+
INFO: Soft AutoCommit: if uncommited for 5000ms;
|
269
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
270
|
+
INFO: Initializing spell checkers
|
271
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
272
|
+
INFO: Registering newSearcher listener for spellchecker: default
|
273
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
274
|
+
INFO: Registering newSearcher listener for spellchecker: default
|
275
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
276
|
+
INFO: Registering newSearcher listener for spellchecker: default
|
277
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.spelling.DirectSolrSpellChecker init
|
278
|
+
INFO: init: {name=example,field=title_text,buildOnCommit=true,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01}
|
279
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.spelling.DirectSolrSpellChecker init
|
280
|
+
INFO: init: {name=example,field=title_text,buildOnCommit=true,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01}
|
281
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.spelling.DirectSolrSpellChecker init
|
282
|
+
INFO: init: {name=example,field=title_text,buildOnCommit=true,classname=solr.DirectSolrSpellChecker,distanceMeasure=internal,accuracy=0.5,maxEdits=2,minPrefix=1,maxInspections=5,minQueryLength=4,maxQueryFrequency=0.01}
|
283
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
284
|
+
INFO: Registering newSearcher listener for spellchecker: example
|
285
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
286
|
+
INFO: Registering newSearcher listener for spellchecker: example
|
287
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
288
|
+
INFO: Registering newSearcher listener for spellchecker: example
|
289
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
290
|
+
INFO: No queryConverter defined, using default converter
|
291
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
292
|
+
INFO: No queryConverter defined, using default converter
|
293
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.component.SpellCheckComponent inform
|
294
|
+
INFO: No queryConverter defined, using default converter
|
295
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.ReplicationHandler inform
|
296
|
+
INFO: Commits will be reserved for 10000
|
297
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.ReplicationHandler inform
|
298
|
+
INFO: Commits will be reserved for 10000
|
299
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.handler.ReplicationHandler inform
|
300
|
+
INFO: Commits will be reserved for 10000
|
301
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.SolrCore registerSearcher
|
302
|
+
INFO: [development] Registered new searcher Searcher@51b9d4c main{StandardDirectoryReader(segments_1:1)}
|
303
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.CoreContainer registerCore
|
304
|
+
INFO: registering core: default
|
305
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.CoreContainer registerCore
|
306
|
+
INFO: registering core: development
|
307
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.CoreContainer registerCore
|
308
|
+
INFO: registering core: test
|
309
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.SolrCore registerSearcher
|
310
|
+
INFO: [default] Registered new searcher Searcher@46916631 main{StandardDirectoryReader(segments_o:19 _4(4.2):C2)}
|
311
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.core.SolrCore registerSearcher
|
312
|
+
INFO: [test] Registered new searcher Searcher@52bd39c4 main{StandardDirectoryReader(segments_1:1)}
|
313
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.servlet.SolrDispatchFilter init
|
314
|
+
INFO: user.dir=/Users/andyschrage/.rvm/gems/ruby-2.1.1@sunspot_neo4j/gems/sunspot_solr-2.2.0/solr
|
315
|
+
Apr 16, 2015 7:49:20 PM org.apache.solr.servlet.SolrDispatchFilter init
|
316
|
+
INFO: SolrDispatchFilter.init() done
|
317
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.core.SolrDeletionPolicy onInit
|
318
|
+
INFO: SolrDeletionPolicy.onInit: commits:num=1
|
319
|
+
commit{dir=NRTCachingDirectory(org.apache.lucene.store.NIOFSDirectory@/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/default/data/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@7c23bb8c; maxCacheMB=48.0 maxMergeSizeMB=4.0),segFN=segments_o,generation=24,filenames=[_4.fdx, _4.nvd, _4_Lucene41_0.doc, segments_o, _4.fnm, _4_Lucene41_0.pos, _4.fdt, _4.si, _4.nvm, _4_Lucene41_0.tip, _4_Lucene41_0.tim]
|
320
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.core.SolrDeletionPolicy updateCommits
|
321
|
+
INFO: newest commit = 24[_4.fdx, _4.nvd, _4_Lucene41_0.doc, segments_o, _4.fnm, _4_Lucene41_0.pos, _4.fdt, _4.si, _4.nvm, _4_Lucene41_0.tip, _4_Lucene41_0.tim]
|
322
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.search.SolrIndexSearcher <init>
|
323
|
+
INFO: Opening Searcher@12c0d0f3 realtime
|
324
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.update.processor.LogUpdateProcessor finish
|
325
|
+
INFO: [default] webapp=/solr path=/update params={wt=ruby} {deleteByQuery=*:* (-1498658123063230464)} 0 75
|
326
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.update.DirectUpdateHandler2 commit
|
327
|
+
INFO: start commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDeletes=false,softCommit=false,prepareCommit=false}
|
328
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.core.SolrDeletionPolicy onCommit
|
329
|
+
INFO: SolrDeletionPolicy.onCommit: commits:num=2
|
330
|
+
commit{dir=NRTCachingDirectory(org.apache.lucene.store.NIOFSDirectory@/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/default/data/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@7c23bb8c; maxCacheMB=48.0 maxMergeSizeMB=4.0),segFN=segments_o,generation=24,filenames=[_4.fdx, _4.nvd, _4_Lucene41_0.doc, segments_o, _4.fnm, _4_Lucene41_0.pos, _4.fdt, _4.si, _4.nvm, _4_Lucene41_0.tip, _4_Lucene41_0.tim]
|
331
|
+
commit{dir=NRTCachingDirectory(org.apache.lucene.store.NIOFSDirectory@/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/default/data/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@7c23bb8c; maxCacheMB=48.0 maxMergeSizeMB=4.0),segFN=segments_p,generation=25,filenames=[segments_p]
|
332
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.core.SolrDeletionPolicy updateCommits
|
333
|
+
INFO: newest commit = 25[segments_p]
|
334
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.search.SolrIndexSearcher <init>
|
335
|
+
INFO: Opening Searcher@599545b6 main
|
336
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.update.DirectUpdateHandler2 commit
|
337
|
+
INFO: end_commit_flush
|
338
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.handler.component.SpellCheckComponent$SpellCheckerListener buildSpellIndex
|
339
|
+
INFO: Building spell index for spell checker: default
|
340
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.handler.component.SpellCheckComponent$SpellCheckerListener buildSpellIndex
|
341
|
+
INFO: Building spell index for spell checker: example
|
342
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.core.SolrCore registerSearcher
|
343
|
+
INFO: [default] Registered new searcher Searcher@599545b6 main{StandardDirectoryReader(segments_o:21:nrt)}
|
344
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.update.processor.LogUpdateProcessor finish
|
345
|
+
INFO: [default] webapp=/solr path=/update params={wt=ruby} {commit=} 0 9
|
346
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.update.DirectUpdateHandler2 commit
|
347
|
+
INFO: start commit{,optimize=false,openSearcher=true,waitSearcher=true,expungeDeletes=false,softCommit=false,prepareCommit=false}
|
348
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.core.SolrDeletionPolicy onCommit
|
349
|
+
INFO: SolrDeletionPolicy.onCommit: commits:num=2
|
350
|
+
commit{dir=NRTCachingDirectory(org.apache.lucene.store.NIOFSDirectory@/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/default/data/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@7c23bb8c; maxCacheMB=48.0 maxMergeSizeMB=4.0),segFN=segments_p,generation=25,filenames=[segments_p]
|
351
|
+
commit{dir=NRTCachingDirectory(org.apache.lucene.store.NIOFSDirectory@/Users/andyschrage/rails_projects/sunspot_neo4j/spec/dummy/solr/default/data/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@7c23bb8c; maxCacheMB=48.0 maxMergeSizeMB=4.0),segFN=segments_q,generation=26,filenames=[segments_q]
|
352
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.core.SolrDeletionPolicy updateCommits
|
353
|
+
INFO: newest commit = 26[segments_q]
|
354
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.search.SolrIndexSearcher <init>
|
355
|
+
INFO: Opening Searcher@72ca7fc main
|
356
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.update.DirectUpdateHandler2 commit
|
357
|
+
INFO: end_commit_flush
|
358
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.handler.component.SpellCheckComponent$SpellCheckerListener buildSpellIndex
|
359
|
+
INFO: Building spell index for spell checker: default
|
360
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.handler.component.SpellCheckComponent$SpellCheckerListener buildSpellIndex
|
361
|
+
INFO: Building spell index for spell checker: example
|
362
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.core.SolrCore registerSearcher
|
363
|
+
INFO: [default] Registered new searcher Searcher@72ca7fc main{StandardDirectoryReader(segments_o:21:nrt)}
|
364
|
+
Apr 16, 2015 7:49:21 PM org.apache.solr.update.processor.LogUpdateProcessor finish
|
365
|
+
INFO: [default] webapp=/solr path=/update params={wt=ruby} {commit=} 0 6
|