eventbrite - Searches with complex keyword sets -


i'd make more robust searches including keyword variants. api doesn't appear support wild cards or automatically include variants. can @ eventbrite explain how out of keyword parameter? also, how multiple keywords handled? can search handle doublets or longer sets? can search done boolean operators?

so far, have seen simple searches (single word) working. can more this?

eventbrite uses apache lucene / solr it's search back-end. provides basic keyword stemming features , full-text search on event title , description.

by default, multiple keywords handled 'and' operator: searching 'bikes' , 'tacos' (keywords=bikes%20tacos), should return events mention "taco" or "tacos" , "bike" or "bikes". keyword stemming support allows automatically match on english-language pluralizations.

if want find events mention either 'bikes' or 'tacos', can separate keywords 'or' clause (keywords=bikes%20or%20tacos).

the event_search api documentation page should contain recent information on how use method's keyword parameter. should able test queries using interactive 'try now!' section located on page.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -