
design - How would you implement Google Search? - Software …
The first phase of implementing Google (or any search engine) is to build an indexer. This is the piece of software that crawls the corpus of data and produces the results in a data structure …
design - How do searches fit into a RESTful interface? - Software ...
This is the standard case for a search. 2) All of these concepts are very important not just from user and search engine, but from an architectural, API design standpoint. 3) If you create a …
Small Search Engine Algorithm for Document Word Search
Oct 11, 2016 · I have to design and implement an algorithm for my university project that searches a given set of documents based on the keywords/query given. Assume that each …
Architecting a universal search for a product with microservices
Feb 5, 2018 · Apart from a simple UI, a universal search bar seems to add value. The search bar with auto-complete will allow users to find information such as - their billing history (past …
web development - What technical details should a programmer …
What things should a programmer implementing the technical details of a web application consider before making the site public? If Jeff Atwood can forget about HttpOnly cookies, …
How to quickly search through a very large list of strings / records …
This is an interesting concept but it seems unlikely that a developer can easily search through 1GB of textual data faster and more efficiently than a database engine.
Better way of storing key-value pairs in the database?
Apr 26, 2016 · Explore efficient ways to store key-value pairs in a database, including best practices and potential pitfalls.
api design - How to build REST uri that fetches children by parent …
Sep 2, 2023 · Other reasons for using clean URLs include search engine optimization (SEO), conforming to the representational state transfer (REST) style of software architecture, and …
NoSQL as file meta database - Software Engineering Stack Exchange
Dec 4, 2012 · The intended file system must be able to handle filtered search based on date, name etc. as fast as possible. So what path should i take? Stick to relational with some …
What is a proper way to do a complex RESTful search method?
Jul 19, 2017 · Also, the search should show the results in "real time", I mean, every time the user changes something from the search form he should be able to see the new results without …