{"id":28296,"date":"2025-07-15T14:50:58","date_gmt":"2025-07-15T21:50:58","guid":{"rendered":"https:\/\/www.pingcap.com\/?post_type=article&#038;p=28296"},"modified":"2025-07-15T15:56:56","modified_gmt":"2025-07-15T22:56:56","slug":"what-is-full-text-search-and-how-does-it-work","status":"publish","type":"article","link":"https:\/\/www.pingcap.com\/ko\/article\/what-is-full-text-search-and-how-does-it-work\/","title":{"rendered":"What is Full-Text Search and How Does it Work?"},"content":{"rendered":"<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Introduction\"><\/span><strong>Introduction<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today&#8217;s digital world, we&#8217;re awash in text data, and efficiently sifting through it to find what truly matters is a constant challenge. This is where&nbsp;<strong>Full-Text Search (FTS)<\/strong>&nbsp;steps in.<\/p>\n\n\n\n<p>Unlike a simple &#8220;Ctrl+F&#8221; or a basic SQL\u00a0<code>LIKE<\/code>\u00a0query, FTS is a powerful technology engineered to go beyond literal matches. It uses advanced algorithms and smart data structures to understand and deliver truly\u00a0<em>relevant<\/em>information, even from massive volumes of unstructured data. For modern applications where user experience hinges on finding information quickly and accurately, the relevance of FTS is undeniable.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Why_%E2%80%9CSimple_Search%E2%80%9D_Isnt_Enough_The_Limitations_of_LIKE\"><\/span>Why &#8220;Simple Search&#8221; Isn&#8217;t Enough: The Limitations of\u00a0<code>LIKE<\/code><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>It&#8217;s tempting to rely on basic search functions like SQL&#8217;s&nbsp;<code>LIKE<\/code>&nbsp;clause for text queries. They seem straightforward, right? However, this simplicity comes at a significant cost, especially when dealing with large datasets.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Performance Bottlenecks:<\/strong>\u00a0<code>LIKE<\/code>\u00a0queries often trigger full table scans, which can become painfully slow and inefficient as your databases grow. Imagine trying to find a needle in a haystack by scanning every single piece of hay one by one \u2013 that&#8217;s\u00a0<code>LIKE<\/code>\u00a0on a large scale.<\/li>\n\n\n\n<li><strong>Lack of Relevance:<\/strong>\u00a0Simple searches simply return a list of matches. They have no built-in intelligence to rank results, meaning the most important information could be buried pages deep. In a world where users expect instant, relevant answers, a mere list won&#8217;t cut it.<\/li>\n\n\n\n<li><strong>Rigidity with Language:<\/strong>\u00a0Basic searches are notoriously rigid. They struggle with common issues like typos, pluralization, and different forms of a word. For instance, a search for &#8220;run&#8221; won&#8217;t find &#8220;running&#8221; or &#8220;ran.&#8221; This can lead to frustratingly incomplete or inaccurate results.<\/li>\n<\/ul>\n\n\n\n<p><strong>Full-Text Search<\/strong>\u00a0was designed precisely to overcome these shortcomings, employing sophisticated techniques to process and search through text with greater efficiency and accuracy.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"How_Full-Text_Search_Works_The_Inverted_Index\"><\/span>How Full-Text Search Works (The Inverted Index)<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>At the heart of every effective&nbsp;<strong>Full-Text Search<\/strong>&nbsp;system lies a brilliant concept: the&nbsp;<strong>inverted index<\/strong>. To understand it, think of your favorite non-fiction book. You wouldn&#8217;t read the whole book to find a specific topic, would you? You&#8217;d jump to the index at the back, where topics are listed alphabetically with their corresponding page numbers.<\/p>\n\n\n\n<p>An&nbsp;<strong>inverted index<\/strong>&nbsp;works similarly, but for all the words in your digital text data. Instead of mapping documents to their content, it maps&nbsp;<em>each unique word<\/em>&nbsp;in your text corpus to the documents (and often their precise locations) where that word appears.<\/p>\n\n\n\n<p>Here&#8217;s a simplified example of how it&#8217;s built: Imagine the sentence: &#8220;The quick brown fox jumps over the lazy dog.&#8221;<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Each significant word (&#8220;quick,&#8221; &#8220;brown,&#8221; &#8220;fox,&#8221; &#8220;jumps,&#8221; &#8220;lazy,&#8221; &#8220;dog&#8221;) is extracted.<\/li>\n\n\n\n<li>An entry is created in the\u00a0<strong>inverted index<\/strong>\u00a0for each word.<\/li>\n\n\n\n<li>Each entry then points to the document ID (or even the specific position within the document) where that word was found.<\/li>\n<\/ol>\n\n\n\n<p>This innovative structure allows&nbsp;<strong>Full-Text Search<\/strong>&nbsp;systems to perform lightning-fast lookups, making it the foundational data structure for incredibly efficient text-based querying.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Key Stages &amp; Components of FTS: The &#8220;Engine Room&#8221;<\/h3>\n\n\n\n<p>Before a&nbsp;<strong>Full-Text Search<\/strong>&nbsp;system can deliver those accurate, relevant results, a lot of work goes on behind the scenes. Think of it as a finely tuned engine with several critical components:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">1. Text Analysis\/Preprocessing<\/h4>\n\n\n\n<p>Before any indexing or searching happens, the raw text undergoes a transformation to make it searchable.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Tokenization:<\/strong>\u00a0The first step is breaking down the continuous stream of text into individual &#8220;words&#8221; or &#8220;tokens.&#8221; For example, &#8220;Hello, world!&#8221; might become &#8220;Hello&#8221; and &#8220;world.&#8221;<\/li>\n\n\n\n<li><strong>Normalization:<\/strong>\u00a0To ensure consistency, all characters are typically converted to lowercase, and punctuation marks are removed (e.g., &#8220;Hello&#8221; becomes &#8220;hello&#8221;).<\/li>\n\n\n\n<li><strong>Stop Word Removal:<\/strong>\u00a0Common, semantically insignificant words like &#8220;the,&#8221; &#8220;is,&#8221; &#8220;and,&#8221; or &#8220;a&#8221; are often removed. This reduces noise and improves search efficiency without losing meaning.<\/li>\n\n\n\n<li><strong>Stemming &amp; Lemmatization:<\/strong>\u00a0These processes reduce words to their base or root form. &#8220;Running,&#8221; &#8220;runs,&#8221; and &#8220;ran&#8221; might all be reduced to &#8220;run,&#8221; allowing the search engine to treat these variations as identical and significantly improve retrieval performance.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">2. Indexing<\/h4>\n\n\n\n<p>Once the text is preprocessed, the system builds the&nbsp;<strong>inverted index<\/strong>. This involves meticulously mapping each processed token to the documents in which it appears. It&#8217;s like creating an exhaustive, interconnected index for an entire digital library.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">3. Query Processing<\/h4>\n\n\n\n<p>When a user types a search query, it goes through a similar text analysis pipeline as the indexed documents. The query is parsed, tokenized, and normalized. Then, the system efficiently matches these processed query tokens against the&nbsp;<strong>inverted index<\/strong>&nbsp;to swiftly locate all relevant documents.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">4. Ranking\/Relevance Scoring<\/h4>\n\n\n\n<p>Not all search results are equally important.\u00a0<strong>Full-Text Search<\/strong>\u00a0systems excel here by incorporating sophisticated mechanisms to rank results.\u00a0<strong>Relevance scoring<\/strong>, often utilizing algorithms like Term Frequency-Inverse Document Frequency (TF-IDF) or BM25, helps surface the most pertinent information. These algorithms consider factors like how frequently a term appears in a document and how unique that term is across the entire dataset, ensuring users see the most relevant information at the top of their results.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Benefits_of_FTS_More_Than_Just_Finding_Words\"><\/span>Benefits of FTS: More Than Just Finding Words<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>The sophisticated architecture of&nbsp;<strong>Full-Text Search<\/strong>&nbsp;delivers significant advantages:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Blazing Speed &amp; Efficiency:<\/strong>\u00a0Thanks to the powerful inverted index, FTS systems can sift through vast amounts of data in milliseconds.<\/li>\n\n\n\n<li><strong>Unmatched Relevance &amp; Accuracy:<\/strong>\u00a0Intelligent ranking ensures users find exactly what they&#8217;re looking for, leading to greater user satisfaction.<\/li>\n\n\n\n<li><strong>Natural Language Understanding:<\/strong>\u00a0FTS gracefully handles variations in language, including different word forms and even potential typos, making the search experience incredibly seamless.<\/li>\n<\/ul>\n\n\n\n<p>For a deeper dive into how these features translate into tangible business advantages, visit our dedicated page on the\u00a0<strong>Benefits of Full-Text Search for Businesses<\/strong>. Or, explore compelling examples of how FTS is transforming industries on our\u00a0<strong>Full-Text Search Use Cases: Revolutionizing Data Retrieval<\/strong>\u00a0page.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Full-Text_Search_vs_Other_Search_Methods_A_Brief_Comparison\"><\/span>Full-Text Search vs. Other Search Methods: A Brief Comparison<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>When stacked against basic SQL&nbsp;<code>LIKE<\/code>&nbsp;queries,&nbsp;<strong>Full-Text Search<\/strong>&nbsp;is clearly superior in both speed and relevance, particularly with large datasets. While&nbsp;<code>LIKE<\/code>&nbsp;queries might falter under the weight of extensive text, FTS leverages its&nbsp;<strong>inverted index<\/strong>&nbsp;to perform efficiently.<\/p>\n\n\n\n<p>Compared to traditional structured database queries, which excel with predefined schemas and relationships,&nbsp;<strong>Full-Text Search<\/strong>&nbsp;is specifically engineered for unstructured text data. This allows it to bridge the gap in scenarios where traditional relational methods simply fall short, enabling powerful searches across diverse content like articles, reviews, or log files.<\/p>\n\n\n\n<p>For a comprehensive understanding of all\u00a0<strong>FTS capabilities<\/strong>, be sure to check out our complete guide to <strong>Full-Text Search databases<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span>Conclusion<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In essence,&nbsp;<strong>Full-Text Search<\/strong>&nbsp;is a sophisticated and indispensable solution for the demands of modern data retrieval. With its innovative&nbsp;<strong>inverted index<\/strong>&nbsp;at its core and its powerful text processing capabilities, it far outshines basic search methods, significantly enhancing the user experience by delivering highly relevant results swiftly and intelligently. As businesses continue to navigate ever-expanding data landscapes, understanding the fundamentals of&nbsp;<strong>FTS<\/strong>&nbsp;illuminates its critical role in revolutionizing how we find and interact with information.<\/p>\n\n\n\n<p><strong>Explore how FTS can transform your application&#8217;s search capabilities today.<\/strong>&nbsp;Ready to dive even deeper? Learn about the profound&nbsp;<strong>business benefits of FTS<\/strong>&nbsp;and uncover&nbsp;<strong>revolutionary use cases<\/strong>&nbsp;that could reshape your entire approach to data retrieval.<\/p>","protected":false},"excerpt":{"rendered":"<p>Introduction Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today&#8217;s digital world, we&#8217;re awash in text data, and efficiently sifting through it to find what truly matters is a constant challenge. This is where&nbsp;Full-Text Search (FTS)&nbsp;steps in. Unlike a simple &#8220;Ctrl+F&#8221; or a basic [&hellip;]<\/p>\n","protected":false},"author":305,"featured_media":0,"template":"","class_list":["post-28296","article","type-article","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is Full-Text Search and How Does it Work? | TiDB<\/title>\n<meta name=\"description\" content=\"Introduction Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today&#039;s Discover how Full-Text Search enhances data retrieval accuracy and speed beyond SQL limitations\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.pingcap.com\/ko\/article\/what-is-full-text-search-and-how-does-it-work\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Full-Text Search and How Does it Work? | TiDB\" \/>\n<meta property=\"og:description\" content=\"Introduction Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today&#039;s Discover how Full-Text Search enhances data retrieval accuracy and speed beyond SQL limitations\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pingcap.com\/ko\/article\/what-is-full-text-search-and-how-does-it-work\/\" \/>\n<meta property=\"og:site_name\" content=\"TiDB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/pingcap2015\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-15T22:56:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/static.pingcap.com\/files\/2024\/09\/11005522\/Homepage-Ad.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1440\" \/>\n\t<meta property=\"og:image:height\" content=\"714\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@PingCAP\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/\",\"url\":\"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/\",\"name\":\"What is Full-Text Search and How Does it Work? | TiDB\",\"isPartOf\":{\"@id\":\"https:\/\/www.pingcap.com\/#website\"},\"datePublished\":\"2025-07-15T21:50:58+00:00\",\"dateModified\":\"2025-07-15T22:56:56+00:00\",\"description\":\"Introduction Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today's Discover how Full-Text Search enhances data retrieval accuracy and speed beyond SQL limitations\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pingcap.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Articles\",\"item\":\"https:\/\/www.pingcap.com\/article\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is Full-Text Search and How Does it Work?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.pingcap.com\/#website\",\"url\":\"https:\/\/www.pingcap.com\/\",\"name\":\"TiDB\",\"description\":\"TiDB | SQL at Scale\",\"publisher\":{\"@id\":\"https:\/\/www.pingcap.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.pingcap.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.pingcap.com\/#organization\",\"name\":\"PingCAP\",\"url\":\"https:\/\/www.pingcap.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png\",\"contentUrl\":\"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png\",\"width\":811,\"height\":232,\"caption\":\"PingCAP\"},\"image\":{\"@id\":\"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/pingcap2015\",\"https:\/\/x.com\/PingCAP\",\"https:\/\/linkedin.com\/company\/pingcap\",\"https:\/\/youtube.com\/channel\/UCuq4puT32DzHKT5rU1IZpIA\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Full-Text Search and How Does it Work? | TiDB","description":"Introduction Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today's Discover how Full-Text Search enhances data retrieval accuracy and speed beyond SQL limitations","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.pingcap.com\/ko\/article\/what-is-full-text-search-and-how-does-it-work\/","og_locale":"ko_KR","og_type":"article","og_title":"What is Full-Text Search and How Does it Work? | TiDB","og_description":"Introduction Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today's Discover how Full-Text Search enhances data retrieval accuracy and speed beyond SQL limitations","og_url":"https:\/\/www.pingcap.com\/ko\/article\/what-is-full-text-search-and-how-does-it-work\/","og_site_name":"TiDB","article_publisher":"https:\/\/facebook.com\/pingcap2015","article_modified_time":"2025-07-15T22:56:56+00:00","og_image":[{"width":1440,"height":714,"url":"https:\/\/static.pingcap.com\/files\/2024\/09\/11005522\/Homepage-Ad.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@PingCAP","twitter_misc":{"Est. reading time":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/","url":"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/","name":"What is Full-Text Search and How Does it Work? | TiDB","isPartOf":{"@id":"https:\/\/www.pingcap.com\/#website"},"datePublished":"2025-07-15T21:50:58+00:00","dateModified":"2025-07-15T22:56:56+00:00","description":"Introduction Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today's Discover how Full-Text Search enhances data retrieval accuracy and speed beyond SQL limitations","breadcrumb":{"@id":"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pingcap.com\/article\/what-is-full-text-search-and-how-does-it-work\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pingcap.com\/"},{"@type":"ListItem","position":2,"name":"Articles","item":"https:\/\/www.pingcap.com\/article\/"},{"@type":"ListItem","position":3,"name":"What is Full-Text Search and How Does it Work?"}]},{"@type":"WebSite","@id":"https:\/\/www.pingcap.com\/#website","url":"https:\/\/www.pingcap.com\/","name":"\ud2f0DB","description":"TiDB | SQL at Scale","publisher":{"@id":"https:\/\/www.pingcap.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pingcap.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/www.pingcap.com\/#organization","name":"PingCAP","url":"https:\/\/www.pingcap.com\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/","url":"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png","contentUrl":"https:\/\/static.pingcap.com\/files\/2021\/11\/pingcap-logo.png","width":811,"height":232,"caption":"PingCAP"},"image":{"@id":"https:\/\/www.pingcap.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/pingcap2015","https:\/\/x.com\/PingCAP","https:\/\/linkedin.com\/company\/pingcap","https:\/\/youtube.com\/channel\/UCuq4puT32DzHKT5rU1IZpIA"]}]}},"card_markup":"        <a class=\"card-article\" href=\"https:\/\/www.pingcap.com\/ko\/article\/what-is-full-text-search-and-how-does-it-work\/\">            <h3>What is Full-Text Search and How Does it Work?<\/h3>            <p>Introduction Ever struggled to find that one piece of information buried deep within countless documents, emails, or product descriptions? In today&#8217;s digital world, we&#8217;re awash in text data, and efficiently sifting through it to find what truly matters is a constant challenge. This is where&nbsp;Full-Text Search (FTS)&nbsp;steps in. Unlike a simple &#8220;Ctrl+F&#8221; or a basic [&hellip;]<\/p>        <\/a>","_links":{"self":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/article\/28296","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/article"}],"about":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/types\/article"}],"author":[{"embeddable":true,"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/users\/305"}],"wp:attachment":[{"href":"https:\/\/www.pingcap.com\/ko\/wp-json\/wp\/v2\/media?parent=28296"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}