forked from OpenNeo/impress
Matchu
6e09b8bc10
Confirmed features: * Output (retrieval, sorting, etc.) * Name (positive and negative, but new behavior) * Flags (positive and negative) Planned features: * users:owns, user:wants Known issues: * Sets are broken * Don't render properly * Shouldn't actually be done as joined sets, anyway, since we actually want (set1_zone1 OR set1_zone2) AND (set2_zone1 OR set2_zone2), which will require breaking it into multiple terms queries. * Name has regressed: ignores phrases, doesn't require *all* words. While we're breaking sets into multiple queries, maybe we'll do something similar for name. In fact, we really kinda have to if we're gonna keep sorting by name, since "straw hat" returns all hats. Eww.
18 lines
563 B
Ruby
18 lines
563 B
Ruby
# inspect the methods loaded in this module and their usage
|
|
# in the rails console by just typing:
|
|
# >> puts FlexSearch.flex.info
|
|
# you can eventually restrict the info to a single method by pasing its name:
|
|
# >> puts FlexSearch.flex.info :search
|
|
# see the detailed doc for this feature at https://github.com/ddnexus/flex/wiki/Selfdoc
|
|
|
|
module FlexSearch
|
|
|
|
extend self
|
|
|
|
include Flex::Loader
|
|
flex.load_search_source
|
|
|
|
# you may need to add more method here, usually wrapper methods
|
|
# that use one of the autogenerated methods from the loaded templates
|
|
|
|
end
|