I have an architectural question about using apache solr/lucene.
I'm building a solr index for searching a CV database. Basically every cv on there will have some fields like:
rate of pay, address, title
these fields are straight forward. The area I need advise on is, skills and job history. For skills, someone might add an entry like: C# - 5 Years, Java - 9 Years
So there's essentially N number of skills, each with a string name and a int no of years. I was thinking I could use a dynamic field, *_skill, and possibly add them like so:
1_skill: C#, 2_skill: Java
But how can I index the years experience? would I then add a dynamic field like:
1_skill_years: 5, 2_skill_years: 9
Has anyone done similar things before? Any help greatly appreciated?
regards