It's been a long time since I worked at Google but when I did (10 yrs ago), the search system for the intranet was notoriously awful. Part of the reason was that PageRank tends not to work so well in places where things aren't heavily cross-linked, which is a hard place to get to if you search system already sucks.
Ask HN: Why is Confluence Wiki Search so bad?
21–30 of 127 posts
Re: Ask HN: Why is Confluence Wiki Search so bad?
#22Re: Ask HN: Why is Confluence Wiki Search so bad?
#23Re: Ask HN: Why is Confluence Wiki Search so bad?
#24I'm my experience almost everything that Atlassian makes is total garbage. Bitbucket, Jira, Confluence, etc. are all horribly slow to the point of being unusable and most of it has very poor UI/UX. I pretty much don't recommend anything they make. It's not surprising at all that a fundamental feature of a wiki, search , doesn't work very well.
Re: Ask HN: Why is Confluence Wiki Search so bad?
#25I'm my experience almost everything that Atlassian makes is total garbage. Bitbucket, Jira, Confluence, etc. are all horribly slow to the point of being unusable and most of it has very poor UI/UX. I pretty much don't recommend anything they make. It's not surprising at all that a fundamental feature of a wiki, search , doesn't work very well.
That's what everyone has said about every piece of enterprise software ever.
Re: Ask HN: Why is Confluence Wiki Search so bad?
#26Re: Ask HN: Why is Confluence Wiki Search so bad?
#27I'm my experience almost everything that Atlassian makes is total garbage. Bitbucket, Jira, Confluence, etc. are all horribly slow to the point of being unusable and most of it has very poor UI/UX. I pretty much don't recommend anything they make. It's not surprising at all that a fundamental feature of a wiki, search , doesn't work very well.
This concludes, and fully encompasses, everything good that I have to say about Atlassian products.
Re: Ask HN: Why is Confluence Wiki Search so bad?
#28Re: Ask HN: Why is Confluence Wiki Search so bad?
#29The good news here is that the Confluence API is actually really good, and very easy to integrate with. I 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 i…
The docs for the POST content literally says to write what you want in confluences WYSIWYG, then do a GET API call to see what it should look like.