Skip to content

Instantly share code, notes, and snippets.

@traut
Created November 13, 2010 15:45
Show Gist options
  • Save traut/675427 to your computer and use it in GitHub Desktop.
Save traut/675427 to your computer and use it in GitHub Desktop.
1.
// before
http://localhost:8983/solr/select?facet.field[]=line1_ua&facet.field[]=line2_ua&facet.field[]=line3_ua&facet.field[]=line4_ua&facet=true&sort=with_picture+desc&fl=ean&facet_limit=20&q=%2Bstore_id:123+&facet_mincount=1&wt=json&rows=100
// after
http://localhost:8983/solr/select?facet.field=line1_ua&facet.field=line2_ua&facet.field=line3_ua&facet.field=line4_ua&facet=true&sort=with_picture+desc&fl=ean&facet_limit=20&q=%2Bstore_id:123+&facet_mincount=1&wt=json&rows=100
2.
// before
facet_counts: {
facet_queries: { },
facet_fields: {
description: [
"first_value",
9,
"second_value",
8,
"third_value",
7,
]
},
facet_dates: { }
}
// after
facet_counts: {
facet_queries: { },
facet_fields: {
description: [
{ value: 'first_value', count: 9 },
{ value: 'second_value', count: 8 },
{ value: 'third_value', count: 7 },
]
},
facet_dates: { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment