"Launch" Search Beta Release
See original GitHub issueWhat / Why
Lots of great stuff in #6569 and #6682 has effectively made production-ready search engines available. These are still a little hidden from adopters, however, because they are not yet easily discoverable.
In order to “launch” the search beta, we need to make these things default / discoverable / clearly documented.
Scope / UAT Target
- As an App Integrator, my created app’s SearchPage implementation should account for pagination (depends on #6062)
- As an App Integrator, my created app should include the
DefaultTechDocsCollator
in the backend, and an updated Search Page frontend that includes thetechdocs
type (not directly related to the beta milestone, but we get questions about this often) - As an App Integrator, if I select
postgres
as my data store when runningcreate-app
, my Backstage search should default to using thePgSearchEngine
implementation instead ofLunrSearchEngine
.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:6
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Google Launch: Beta Version of New Search Console
Get ready- Google has rolled out the beta version of the new and improved search console and SEO's are more than happy about...
Read more >Android 13 QPR2 Beta 1 brings back a time-saving Android ...
You can hit enter to launch apps from the Pixel Launcher search ... with a new hidden option in Android 13's latest beta...
Read more >TikTok Launches Search Ads in Beta for Selected Partners
This week, TikTok launched beta testing for ads in search results, which provides another way to reach the TikTok audience via the search...
Read more >TikTok Launches Search Ads Beta For Selected Partners
TikTok has quietly rolled out a search ads beta for specific partners. Learn about the new experience and some tips for using these...
Read more >Releases - Apple Developer
Get the latest operating system releases and learn about updates to App Store ... iOS 16.3 beta (20D5024e) ... macOS 13.2 beta (22D5027d)....
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 Free
Top 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
Sooooo close. Hang in there, stalebot.
Beside solving paging I would also throw in possible breaking changes around the collator, decorator and search engine design:
Right now the collator provides a list of all documents that should be indexed, which can be a big amount of memory. I would recommend to switch to a stream based API where the results are streamed from the collator to the decorators and then to the search engine. That way we only hold in memory what is really required.