Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sunspot Solr Gem & .gitignore

I am running the sunspot_solr & sunspot_rails gem in development and I get an insane number of changes to index files and data files every time I start and stop the development and/or sunspot server. It's driving me crazy doing version control.

gem "sunspot_solr", "~> 2.1.0" gem "sunspot_rails", "~> 2.1.0"

Which of these files/directories can be safely ignored? These are the culprits:

solr/development/data/index/_dh.fdt

solr/pids/development/sunspot-solr-development.pid

solr/development/data/tlog/tlog.0000000000000000176

solr/development/data/index/write.lock

Thanks!

like image 306
Brooks Avatar asked Nov 21 '13 18:11

Brooks


1 Answers

I have this in my .gitignore and my teammates had no problem after checking it out...

solr/data
solr/test
solr/development
solr/default/data
/log/*.log.lck
solr/pids
like image 69
luigi7up Avatar answered Sep 29 '22 16:09

luigi7up