[
https://issues.apache.org/jira/browse/SOLR-1148?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12706441#action_12706441
]
Erik Hatcher commented on SOLR-1148:
------------------------------------
Also of note... if you're using the solr-ruby library, the Standard response
has a #field_facets(field_name) method that'll give you back properly sorted
facets (from the array Yonik demonstrated) as a nicer to work with data
structure: and array of FacetValue (a Ruby Struct) objects.
> with code generated by the RubyWriter sorted facets are are actually unsorted
> in Ruby 1.8
> -----------------------------------------------------------------------------------------
>
> Key: SOLR-1148
> URL: https://issues.apache.org/jira/browse/SOLR-1148
> Project: Solr
> Issue Type: Bug
> Components: clients - ruby - flare
> Affects Versions: 1.3
> Reporter: Max Schöfmann
> Priority: Minor
>
> Facet counts are returned as ruby Hash, which is unordered in Ruby 1.8. After
> evaling the hash, the sorting order is lost and the client program needs to
> re-sort the data.
> A fix would be returning facet counts as array of pairs, instead, e.g.
> [['foo', 10], ['bar', 8], ['baz', 6]]
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.