[Bug] It's hard to find latest docs using search engines like Google
See original GitHub issueSearch before asking
- I searched in the issues and found nothing similar.
Version
Minimal reproduce step
What did you expect to see?
Documentation for the lastest version of Pulsar.
What did you see instead?
The latest version of Pulsar is 2.10.x, but I see docs for 2.3.2. I constantly see the documentation for random old versions of Pulsar.
Anything else?
It should be possible to fix it by adding the following HTML meta tag to all pages for old Pulsar versions docs.
<head>
<meta name="robots" content="noindex, nofollow" />
</head>
If you are using Docusaurus, it should be doable by conditionally adding required meta tag to its config file:
https://docusaurus.io/docs/seo
After a couple of weeks, Google should reindex these pages.
Are you willing to submit a PR?
- I’m willing to submit a PR!
Issue Analytics
- State:
- Created a year ago
- Comments:12 (8 by maintainers)
Top Results From Across the Web
What simple bug does Google still have to fix in their search ...
Go to any of the google login pages, i.e. http://drive.google.com, in an incognito window in google chrome (so that it doesn't have any...
Read more >How to Get Better, Less Biased Search Results - TIME
Search engines like Google and Bing struggle with bias and distortion. It's time we start teaching people how to get better search results....
Read more >How to Find a Bug in Application? Tips and Tricks
Almost all the basic tips and tricks involved in the process of finding bugs is explained in detail in this article. You will...
Read more >Google app won't display search results - Android
. Under "Device," tap Apps or Application manager. Select Google App. Under "Storage" or "Cache," tap Clear cache. To check if you get...
Read more >When indexing goes wrong: how Google Search recovered ...
The consequence is that users all over the world are consistently served pages from the most recent version of the index. Google owns...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is an important issue to solve. In addition to discoverability, we often expose old docs. For example, when I search
pulsar java admin client
, the second result is for incubator docs.Note that the first link is for the java client, not the java admin client. If you dig into the java client page, it points to the admin client. However, I have heard from users that it was hard to find the admin client documentation.
@ishu-thakur I think you should somehow conditionally configure the Docusaurus config instead of adding the meta tag in every html file.
If you take it, it’s your task to find out how to do it in a better way.