In order to allow delta indexing for our Solr cores, we store the last index time. Currently, it's only stored in memory in a Java map, so the value is lost on server restart.
What is the proper place to store a value like this?
Configuration comes to mind, but I don't want it to be configurable. It's only needed by the background job that fires off the Solr indexing.
Should it be stored in the CRX in the "apps" node somewhere? That doesn't seem quite right to me, and I'd have to be careful so deployments wouldn't overwrite it there, too.
What's the best way to do this?
Solved! Go to Solution.
Views
Replies
Total Likes
You can store it below /var.
We store all such data in a subfolder below /var/companyname.
For your case, I’d suggest /var/yourcompany/solr where you have a property lastindextime of type Date.
Views
Replies
Total Likes
You can store it below /var.
We store all such data in a subfolder below /var/companyname.
For your case, I’d suggest /var/yourcompany/solr where you have a property lastindextime of type Date.
Views
Replies
Total Likes
Perfect! Exactly what I was looking for.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies