What is search-engine?
A software system that is designed to carry out web search, which means to search the World Wide Web in a systematic way for particular information.
A search engine is more than just a search bar. It is a massive system that crawls the web, indexes the content of millions of pages, and uses complex algorithms to decide which results are the most relevant to your query. It is the primary way we access information in the digital age.
graph LR
Center["What is search-engine?"]:::main
Rel_web_crawler["web-crawler"]:::related -.-> Center
click Rel_web_crawler "/terms/web-crawler"
Rel_keyword_research["keyword-research"]:::related -.-> Center
click Rel_keyword_research "/terms/keyword-research"
Rel_world_wide_web["world-wide-web"]:::related -.-> Center
click Rel_world_wide_web "/terms/world-wide-web"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧠 지식 테스트
🧒 5살도 이해할 수 있게 설명
A search engine is like a librarian who has read every single book in the world and remembers exactly where every sentence is. When you ask them a question, they don't just give you one book; they give you a list of the 10 best books that have the exact answer you're looking for, sorted from best to worst.
🤓 Expert Deep Dive
Modern search engines (Google, Bing, DuckDuckGo) use 'Inverted Indexes' for lightning-fast lookups. They incorporate NLP (Natural Language Processing) to understand the 'intent' behind a query, not just keywords. They also use 'Semantic Search' to find related concepts, meaning a search for 'Apple' might return info about the fruit OR the tech company based on context.