(by unusable, I mean I can never find the page I am looking for when I search. Basically, I have to maintain my own wiki of important links I may need to reference in the future)
Ask HN: Why is Confluence Wiki Search so bad?
1–10 of 127 posts
Re: Ask HN: Why is Confluence Wiki Search so bad?
#2Maybe this is something google should take on. A search plugin for Confluence where google crawlers logs in from time to time for internal crawling to enable non-public teach request on that data. That boost knowledge workers efficiency a lot. I hope somebody from Google reads this and takes on the challenge. I'm sure companies would pay a lot for this.
Re: Ask HN: Why is Confluence Wiki Search so bad?
#3Re: Ask HN: Why is Confluence Wiki Search so bad?
#4Try gmail. More than a decade on and still no partial word match.
Re: Ask HN: Why is Confluence Wiki Search so bad?
#5Re: Ask HN: Why is Confluence Wiki Search so bad?
#6Some existing tooling:
Google cloud search has a confluence connector https://developers.google.com/cloud-search/docs/connector-di...
Elastic workplace search has a connector. https://www.elastic.co/guide/en/workplace-search/current/wor...
Lessonly had / had a thing called Obie https://www.lessonly.com/blog/how-to-search-better-in-conflu...
Raytion https://www.raytion.com/connectors/raytion-confluence-connec...
Re: Ask HN: Why is Confluence Wiki Search so bad?
#7Yes it only finds you crap results. Not sure why they have the most naive search algorithm out there. Maybe good search needs more AI and CPU power than we think. Maybe this is something google should take on. A search plugin for Confluence where google crawlers logs in from time to time for internal crawling to enable non-public teach request on that data. That boost knowledge workers efficiency a lot. I hope somebo…
https://workspace.google.com/products/cloud-search/
https://marketplace.atlassian.com/apps/1212945/google-cloud-...
Re: Ask HN: Why is Confluence Wiki Search so bad?
#8Try gmail. More than a decade on and still no partial word match.
Re: Ask HN: Why is Confluence Wiki Search so bad?
#9This methodology works
https://ccc.inaoep.mx/~villasen/bib/AN%20OVERVIEW%20OF%20EVA...
and I used it to tune up the relevance of a search engine for patents to the point where users could immediately perceive that it worked better than other products.
After I worked on that I wound up talking to the developers and/or marketing people for many enterprise search engines and few of them, if any, did any kind of formal benchmarking of relevance.
People at one firm told me that they used to go to TREC conferences because they thought it got them visibility but that they decided it didn't so they quit going.
A message I got repeatedly was that these firms thought that the people who bought the search engines didn't care much about relevance, but they did care about there being 200 or more plug-ins to import data from various sources.
In principle the tuning is unique to the text corpus. One reason for that is that there is a balancing act of having a search engine that prefers small documents (they have spiky vectors that look more like query vectors) or large documents (they have so many words they match everything.) Different corpuses have different distributions of document sizes, not to mention different distributions of words that appear.
Few organizations are willing to do the work to tune up a search engine (you have to decide about the relevance of 10,000+ document hits), but I've had the experience that you can beat the pants off the defaults even using a generic tuning. For instance that patent search engine was tuned up against the GOV2 corpus instead of a patent corpus. A small patent corpus showed us we were on the right track, however.
Re: Ask HN: Why is Confluence Wiki Search so bad?
#10I wrote a custom search engine that worked by running on cron, pulling in all of the content from Confluence and writing it into a SQLite table with SQLite full-text search enabled (using https://sqlite-utils.datasette.io/en/stable/python-api.html#...), then sticking a https://datasette.io/ interface in front of it.