bin/sunspot-solr in sunspot_solr-2.2.2 vs bin/sunspot-solr in sunspot_solr-2.2.3
- old
+ new
@@ -44,15 +44,11 @@
opts.on '--log-file=LOG_FILE', 'Path to Solr log file' do |lf|
server.log_file = File.expand_path(lf)
end
- opts.on '--max-memory=MEMORY', 'Specify the maximum size of the memory allocation pool' do |mm|
- server.max_memory = mm
- end
-
- opts.on '--min-memory=MEMORY', 'Specify the initial size of the memory allocation pool' do |mm|
- server.min_memory = mm
+ opts.on '--memory=MEMORY', 'Specify the size of the memory allocation pool' do |m|
+ server.memory = m
end
end
opts.parse!