{"id":4502,"date":"2024-08-26T08:35:37","date_gmt":"2024-08-26T08:35:37","guid":{"rendered":"https:\/\/4eck-media.veronika.psd-tutorials.net\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/"},"modified":"2025-12-04T14:42:08","modified_gmt":"2025-12-04T14:42:08","slug":"a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch","status":"publish","type":"blog","link":"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/","title":{"rendered":"A search engine for hundreds of thousands of multilingual contents: Meilisearch"},"content":{"rendered":"<?xml encoding=\"UTF-8\"><p>Companies with large content platforms face enormous challenges when it comes to implementing an efficient search solution. This is particularly true for projects like TutKit.com, a comprehensive learning and content platform that provides content in multiple languages, where search becomes a central element. The expectations are high: a fast, efficient, and multilingual search solution is crucial to provide users with an optimal experience.  <\/p><p>Our platform, TutKit.com, offers tens of thousands of content items, each available in dozens of languages. This variety and volume of content place significant demands on the search function, along with additional challenges regarding performance, database load, and database security. The search must not only be fast and accurate but also effectively support multilingualism. Here is a case study from us on how we found the perfect search engine for us with Meilisearch.   <\/p><h2 class=\"wp-block-heading\">The perfect search engine for content platforms: challenges and expectations <\/h2><p>At the beginning, we had a search solution implemented by an external agency. The implemented search was based on MySQL and was, to put it mildly, inadequate. The loading times for search results took up to 10 seconds, which was frustrating for our users and severely impacted the user experience. Additionally, this solution could not provide good multilingual support. This external agency, although specialized in Laravel, was simply overwhelmed by a project like TutKit.com. It was clear: a drastic improvement was necessary. And we would handle it ourselves.      <\/p><h2 class=\"wp-block-heading\">The decision for Meilisearch<\/h2><p>In search of a better solution, we came across Meilisearch. What particularly impressed us about Meilisearch was its speed and modern user experience. The web presence of Meilisearch and the compelling UX were an initial confirmation that the company is modern and agile. The real excitement came when we tested the speed of the search results. It was a difference like night and day compared to our previous solution. Additionally, Meilisearch offered excellent multilingual support, which was crucial for us.     <\/p><p>1000 results in 2 ms&hellip; that&rsquo;s quite a statement:<\/p><section class=\"custom-theme-block image-full-container theme-image-full-container block-padding-middle\">\n    <div class=\"container\">\n        <div class=\"row\">\n            <div class=\"col-12\">\n                <div class=\"image-wrapper\">\n                    \n<picture itemscope itemtype=\"https:\/\/schema.org\/ImageObject\">\n                        <meta itemprop=\"url\" content=\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0.avif\">\n                            <meta itemprop=\"width\" content=\"1286\">\n                            <meta itemprop=\"height\" content=\"960\">\n                    \n    <img itemprop=\"contentUrl\" src=\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0.avif\" srcset=\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0-2160x1440.avif 1894w, https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0-1440x960.avif 1286w, https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0-1080x720.avif 964w, https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0-960x640.avif 857w, https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0-720x480.avif 643w, https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0-640x428.avif 573w, https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0-480x320.avif 429w, https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/meilisearch_mainpage_fbc63e3ac0-320x214.avif 287w\" alt=\"Meiliserach Homepage\" title=\"\" width=\"1286\" height=\"960\" loading=\"lazy\" decoding=\"async\" sizes=\"auto, 100vw\">\n<\/picture>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section><p>We ultimately chose the open-source version of Meilisearch. This version was selected because it gave us complete control over the search results, without additional costs for licensing fees or external developers, where it is not even certain if they would be able to manage the project, as we have unfortunately experienced in the past. <\/p><h2 class=\"wp-block-heading\">The implementation of Meilisearch<\/h2><p>The integration of Meilisearch into our platform TutKit.com was the first step towards improving the search functionality. Here are the details of how we implemented Meilisearch and how it is currently managed in our company. <\/p><h3 class=\"wp-block-heading\">Setup and configuration<\/h3><p>We decided to use Meilisearch in its open-source version to maintain complete control over our search solutions. The installation began by downloading the Meilisearch server from the official website. To ensure stable and reliable operation, we set up a systemd service. This service was configured to automatically start Meilisearch as soon as the server boots up and to automatically restart the service in case of a failure.   <\/p><pre class=\"wp-block-code\" tabindex=\"0\" tabindex=\"0\"><code># Beispiel f&uuml;r eine systemd-Dienstdatei f&uuml;r Meilisearch\n[Unit]\nDescription=MeiliSearch\nAfter=systemd-user-sessions.service\n\n[Service]\nType=simple\nExecStart=\/usr\/bin\/meilisearch --http-addr 127.0.0.1:7700 --env production --master-key *****\nRestart=on-failure\nRestartSec=5s\n\n[Install]\nWantedBy=multi-user.target\n<\/code><\/pre><h3 class=\"wp-block-heading\">Security configuration<\/h3><p>Security is an important aspect when configuring Meilisearch. We have created two keys to meet the security requirements. The master key, which allows full access to the Meilisearch instance, is used exclusively in the backend. The API key, on the other hand, which has more limited permissions, is used for search operations and other user tasks. This separation ensures that critical backend operations are securely protected while interactions in the frontend remain efficient and secure.    <\/p><h3 class=\"wp-block-heading\">Integration with Laravel<\/h3><p>Our platform TutKit.com is built on the PHP framework Laravel, and we have used the MeiliSearch-PHP library as the basis for the integration. The API key is used in our Laravel application to connect to Meilisearch. This significantly increases security, as only the functions allowed by the API key are accessible, minimizing the risk of unauthorized actions.  <\/p><pre class=\"wp-block-code\" tabindex=\"0\" tabindex=\"0\"><code>\/\/ Beispiel f&uuml;r die Konfiguration von Meilisearch in Laravel\n'connections' =&gt; [\n    'meilisearch' =&gt; [\n        'host' =&gt; env('MEILISEARCH_HOST', 'http:\/\/localhost:7700'),\n        'key' =&gt; env('MEILISEARCH_KEY', null),\n    ],\n],\n<\/code><\/pre><h3 class=\"wp-block-heading\">Indexing and Data Management <\/h3><p>A central aspect of our implementation was the efficient management and indexing of data. We developed a custom console command in Laravel that is specifically designed for extensive updates or for initiating the indexing process. This command specifically targets only the relevant records that need to be indexed. This allows us to avoid unnecessary data processing and focus on the essential information.   <\/p><pre class=\"wp-block-code\" tabindex=\"0\" tabindex=\"0\"><code>\/\/ Beispiel f&uuml;r einen benutzerdefinierten Konsolenbefehl in Laravel\nArtisan::command('index:content', function () {\n    \/\/ Code zur Indexierung der relevanten Datens&auml;tze\n})-&gt;describe('Indexiere alle relevanten Inhalte');\n<\/code><\/pre><p>The example is, of course, very simple. Our command code has 400 lines. <\/p><h3 class=\"wp-block-heading\">Automatic update of indices in the search.<\/h3><p>A key advantage of our implementation is the ability to automatically detect and respond to changes in Laravel models. Whenever data is updated, added, or deleted, the corresponding MeiliSearch index is promptly and efficiently updated to reflect only those changes. This targeted indexing approach eliminates the need for a full reindexing of all data and ensures that our MeiliSearch data remains up to date. Here is a code example when a blog post has been updated:   <\/p><pre class=\"wp-block-code\" tabindex=\"0\" tabindex=\"0\"><code>if($this-&gt;status == 'PUBLIC') {\n                $post_filtered = $this-&gt;prepareSearchField();\n                $searchClient-&gt;index('suggestions')-&gt;updateDocuments([\n                    [\n                        'id' =&gt; 'blog_post_lang_'.$this-&gt;id,\n                        'language' =&gt; $this-&gt;language-&gt;code,\n                        'suggestion' =&gt; SearchHelper::prepareSearchSuggestion($this-&gt;title),\n                        'indexation_type' =&gt; 'suggestion',\n                        'type' =&gt; 'blog_post',\n                    ]\n                ]);\n\n                $searchClient-&gt;index('blog_posts')-&gt;updateDocuments([$post_filtered]);\n            } else {\n                $searchClient-&gt;index('blog_posts')-&gt;deleteDocument($this-&gt;id);\n                $searchClient-&gt;index('suggestions')-&gt;deleteDocument('blog_post_lang_'.$this-&gt;id);\n            }\n<\/code><\/pre><p>This code example is also extremely simple, and our lines of code operate on different models and different statuses. But in principle, it is clear what it&rsquo;s about. <\/p><h3 class=\"wp-block-heading\">Optimization and Maintenance<\/h3><p>Regular maintenance and optimization of the Meilisearch integration is crucial for long-term performance. By utilizing the regular updates from Meilisearch, we benefit from continuous improvements and new features. This ensures that our search solution remains up-to-date and can keep pace with the growing demands of our platform.  <\/p><p>If you want to consider Meilisearch for your project, your developers can find <a href=\"https:\/\/www.meilisearch.com\/docs\" rel=\"nofollow noopener\">documentation on the Meilisearch<\/a> implementation here. <\/p><section class=\"custom-theme-block image-full-container theme-image-full-container block-padding-middle\">\n    <div class=\"container\">\n        <div class=\"row\">\n            <div class=\"col-12\">\n                <div class=\"image-wrapper\">\n                    \n<picture itemscope itemtype=\"https:\/\/schema.org\/ImageObject\">\n                        <meta itemprop=\"url\" content=\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/Meilisearch_f5b0c6bff5.avif\">\n                            <meta itemprop=\"width\" content=\"1200\">\n                            <meta itemprop=\"height\" content=\"600\">\n                    \n    <img itemprop=\"contentUrl\" src=\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/Meilisearch_f5b0c6bff5.avif\" srcset=\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/Meilisearch_f5b0c6bff5.avif 1x, https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/11\/Meilisearch_f5b0c6bff5.avif 2x\" alt=\"Meilisearch search in application\" title=\"\" width=\"1200\" height=\"600\" loading=\"lazy\" decoding=\"async\" sizes=\"auto, 100vw\">\n<\/picture>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section><p>Here in the small animation, it becomes clear: <\/p><ul class=\"wp-block-list\">\n<li>the search is ultra fast<\/li>\n\n\n\n<li>The search is capable of handling typos and still shows the correct results.<\/li>\n\n\n\n<li>the instant search results appear after just a few letters<\/li>\n\n\n\n<li>The search filters allow for a quick narrowing down of the search results.<\/li>\n<\/ul><h2 class=\"wp-block-heading\">The effects of Meiliseach at TutKit.com<\/h2><p>The integration of Meilisearch at TutKit.com by our own development team has proven to be a great success. With a fast and effective search solution that considers multilingualism and large volumes of data, we have significantly improved the user experience. Our self-developed implementation allows us to tailor the search function precisely to our needs while maintaining the control and security necessary for a powerful content platform.  <\/p><p>With Meilisearch, we have achieved a significant improvement in the speed and efficiency of our search function. The indexing of new data is now lightning-fast, and the server load has been significantly reduced. Our users benefit from fast and relevant search results, greatly enhancing the user experience and reducing frustration from long loading times.  <\/p><p>Financially, we have saved significant costs by using the open-source version of Meilisearch. Additionally, the high performance of Meilisearch allows us to manage without external support, further reducing our expenses. <\/p><p>We are excited to see how Meilisearch will develop further. We hope that future versions will integrate even more AI features that capture user search intent better and reduce the need for filters and categorization options. Meilisearch has proven to be the right choice for us.  <\/p><p>In conclusion: We now have the perfect search engine with Meilisearch that helps us provide a fast, multilingual, and user-friendly search solution for our website users&hellip; in our assessment, it is currently the optimal search technology for enterprise challenges with hundreds of thousands or millions of contents.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Many contents in many languages: Meilisearch is your perfect search engine for enterprise challenges.<\/p>\n","protected":false},"featured_media":3214,"template":"","meta":{"_acf_changed":false,"_yoast_wpseo_focuskw":"","_yoast_wpseo_title":"Meilisearch: Search engine for multilingual content","_yoast_wpseo_metadesc":"Case study: How Meilisearch sped up our search from 10s to 2ms. Open-source solution for multilingual content platforms.","_yoast_wpseo_meta-robots-noindex":"","_yoast_wpseo_meta-robots-nofollow":"","_yoast_wpseo_canonical":"","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_opengraph-image":"","_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_yoast_wpseo_twitter-image":"","_title":"field_competency_title","title":"A search engine for hundreds of thousands of multilingual content: Meilisearch Case Study","_description":"","description":"","_thumbnail":"","thumbnail":"","_image":"","image":"","previewColor":"","_previewColor":"","previewColor2":"","_previewColor2":"","_subtitle":"","subtitle":"","_benefit":"","benefit":"","_color":"","color":"","_titleForGallery":"","titleForGallery":"","_subtitleForGallery":"","subtitleForGallery":"","_imageForGallery":"","imageForGallery":"","_client":"","client":"","_service":"","service":"","_cooperationSince":"","cooperationSince":"","name":"","_name":"","author":"Matthias Petri","_author":"field_blog_author","company":"","_company":"","text":"","_text":"","position":"","_position":"","_yoast_wpseo_metakeywords":""},"blog_category":[],"class_list":["post-4502","blog","type-blog","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Meilisearch: Search engine for multilingual content<\/title>\n<meta name=\"description\" content=\"Case study: How Meilisearch sped up our search from 10s to 2ms. Open-source solution for multilingual content platforms.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Meilisearch: Search engine for multilingual content\" \/>\n<meta property=\"og:description\" content=\"Case study: How Meilisearch sped up our search from 10s to 2ms. Open-source solution for multilingual content platforms.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/\" \/>\n<meta property=\"og:site_name\" content=\"4eck Media\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-04T14:42:08+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/#webpage\",\"headline\":\"A search engine for hundreds of thousands of multilingual contents: Meilisearch\",\"description\":\"Many contents in many languages: Meilisearch is your perfect search engine for enterprise challenges.\",\"url\":\"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/\",\"datePublished\":\"2024-08-26T08:35:37+00:00\",\"dateModified\":\"2025-12-04T14:42:08+00:00\",\"inLanguage\":\"en\",\"thumbnailUrl\":\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/10\/meilisearch-engine-contentplatform.avif\",\"primaryImageOfPage\":{\"@id\":\"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/#primaryimage\"},\"keywords\":\"\",\"about\":{\"@id\":\"https:\/\/4eck-media.de\/en\/#ProfessionalService\"},\"isPartOf\":{\"@id\":\"https:\/\/4eck-media.de\/en\/#website\"},\"publisher\":{\"@type\":\"Organization\",\"@id\":\"https:\/\/4eck-media.de\/en\/#organization\",\"name\":\"4eck Media\",\"url\":\"https:\/\/4eck-media.de\/en\/\",\"member\":[{\"@type\":\"Person\",\"@id\":\"https:\/\/4eck-media.de\/en\/#member-matthias-petri\/\",\"name\":\"Matthias Petri\",\"givenName\":\"Matthias\",\"familyName\":\"Petri\",\"gender\":\"https:\/\/schema.org\/Male\",\"birthPlace\":{\"@type\":\"Place\",\"address\":{\"@type\":\"PostalAddress\",\"addressCountry\":\"DE\"}}}],\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/09\/logo-4eck-media.avif\"},\"contactPoint\":{\"@id\":\"https:\/\/4eck-media.de\/en\/#ContactPoint\"},\"address\":{\"@id\":\"https:\/\/4eck-media.de\/en\/#PostalAddress\"},\"sameAs\":[\"https:\/\/www.facebook.com\/4eckmedia\",\"https:\/\/www.kununu.com\/de\/4eck-media1\/kommentare\",\"https:\/\/www.agenturtipp.de\/agentur\/4eck-media-gmbh-co-kg-seo-design-e\/\",\"https:\/\/www.provenexpert.com\/de-de\/4eck-media-gmbh-co-kg\/\",\"https:\/\/feedbax.de\/anbieter\/4eck-media-gmbh-co-kg\",\"https:\/\/www.sortlist.com\/de\/agency\/4eck-media-gmbh-co-kg-agentur-fur-webdesign-seo\",\"https:\/\/maps.app.goo.gl\/jKvYz1jwPhh31x6H7\",\"https:\/\/www.linkedin.com\/company\/4eck-media\/\",\"https:\/\/www.drweb.de\/beste-agentur-finden\/4eck-media\/\",\"https:\/\/www.youtube.com\/c\/tutkit\"]}},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/#primaryimage\",\"url\":\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/10\/meilisearch-engine-contentplatform.avif\",\"contentUrl\":\"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/10\/meilisearch-engine-contentplatform.avif\",\"width\":1080,\"height\":500,\"caption\":\"Meilisearch on content platform\"},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/4eck-media.de\/en\/#website\",\"url\":\"https:\/\/4eck-media.de\/en\/\",\"name\":\"4eck Media\",\"description\":\"Official website of 4eck Media\",\"potentialAction\":{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/4eck-media.de\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"},\"inLanguage\":\"en\",\"publisher\":{\"@id\":\"https:\/\/4eck-media.de\/en\/#ProfessionalService\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Meilisearch: Search engine for multilingual content","description":"Case study: How Meilisearch sped up our search from 10s to 2ms. Open-source solution for multilingual content platforms.","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:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/","og_locale":"en_US","og_type":"article","og_title":"Meilisearch: Search engine for multilingual content","og_description":"Case study: How Meilisearch sped up our search from 10s to 2ms. Open-source solution for multilingual content platforms.","og_url":"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/","og_site_name":"4eck Media","article_modified_time":"2025-12-04T14:42:08+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/#webpage","headline":"A search engine for hundreds of thousands of multilingual contents: Meilisearch","description":"Many contents in many languages: Meilisearch is your perfect search engine for enterprise challenges.","url":"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/","datePublished":"2024-08-26T08:35:37+00:00","dateModified":"2025-12-04T14:42:08+00:00","inLanguage":"en","thumbnailUrl":"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/10\/meilisearch-engine-contentplatform.avif","primaryImageOfPage":{"@id":"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/#primaryimage"},"keywords":"","about":{"@id":"https:\/\/4eck-media.de\/en\/#ProfessionalService"},"isPartOf":{"@id":"https:\/\/4eck-media.de\/en\/#website"},"publisher":{"@type":"Organization","@id":"https:\/\/4eck-media.de\/en\/#organization","name":"4eck Media","url":"https:\/\/4eck-media.de\/en\/","member":[{"@type":"Person","@id":"https:\/\/4eck-media.de\/en\/#member-matthias-petri\/","name":"Matthias Petri","givenName":"Matthias","familyName":"Petri","gender":"https:\/\/schema.org\/Male","birthPlace":{"@type":"Place","address":{"@type":"PostalAddress","addressCountry":"DE"}}}],"logo":{"@type":"ImageObject","url":"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/09\/logo-4eck-media.avif"},"contactPoint":{"@id":"https:\/\/4eck-media.de\/en\/#ContactPoint"},"address":{"@id":"https:\/\/4eck-media.de\/en\/#PostalAddress"},"sameAs":["https:\/\/www.facebook.com\/4eckmedia","https:\/\/www.kununu.com\/de\/4eck-media1\/kommentare","https:\/\/www.agenturtipp.de\/agentur\/4eck-media-gmbh-co-kg-seo-design-e\/","https:\/\/www.provenexpert.com\/de-de\/4eck-media-gmbh-co-kg\/","https:\/\/feedbax.de\/anbieter\/4eck-media-gmbh-co-kg","https:\/\/www.sortlist.com\/de\/agency\/4eck-media-gmbh-co-kg-agentur-fur-webdesign-seo","https:\/\/maps.app.goo.gl\/jKvYz1jwPhh31x6H7","https:\/\/www.linkedin.com\/company\/4eck-media\/","https:\/\/www.drweb.de\/beste-agentur-finden\/4eck-media\/","https:\/\/www.youtube.com\/c\/tutkit"]}},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/4eck-media.de\/en\/blog\/a-search-engine-for-hundreds-of-thousands-of-multilingual-contents-meilisearch\/#primaryimage","url":"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/10\/meilisearch-engine-contentplatform.avif","contentUrl":"https:\/\/4eck-media.de\/wp-content\/uploads\/2025\/10\/meilisearch-engine-contentplatform.avif","width":1080,"height":500,"caption":"Meilisearch on content platform"},{"@type":"WebSite","@id":"https:\/\/4eck-media.de\/en\/#website","url":"https:\/\/4eck-media.de\/en\/","name":"4eck Media","description":"Official website of 4eck Media","potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/4eck-media.de\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"},"inLanguage":"en","publisher":{"@id":"https:\/\/4eck-media.de\/en\/#ProfessionalService"}}]}},"yoast_fields":{"_yoast_wpseo_title":"Meilisearch: Search engine for multilingual content","_yoast_wpseo_metadesc":"Case study: How Meilisearch sped up our search from 10s to 2ms. Open-source solution for multilingual content platforms.","_yoast_wpseo_primary_blog_category":"","_yoast_wpseo_content_score":"90","_yoast_wpseo_estimated-reading-time-minutes":"6"},"block_visibility_meta":[],"_links":{"self":[{"href":"https:\/\/4eck-media.de\/en\/wp-json\/wp\/v2\/blog\/4502","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/4eck-media.de\/en\/wp-json\/wp\/v2\/blog"}],"about":[{"href":"https:\/\/4eck-media.de\/en\/wp-json\/wp\/v2\/types\/blog"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/4eck-media.de\/en\/wp-json\/wp\/v2\/media\/3214"}],"wp:attachment":[{"href":"https:\/\/4eck-media.de\/en\/wp-json\/wp\/v2\/media?parent=4502"}],"wp:term":[{"taxonomy":"blog_category","embeddable":true,"href":"https:\/\/4eck-media.de\/en\/wp-json\/wp\/v2\/blog_category?post=4502"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}