<br />
<b>Warning</b>:  Undefined array key "global_protection_id" in <b>/home/wikitechy/public_html/interview-questions/wp-content/plugins/content-protector/inc/class-ps-rest-handler.php</b> on line <b>51</b><br />
{"id":244,"date":"2021-07-12T15:29:04","date_gmt":"2021-07-12T15:29:04","guid":{"rendered":"https:\/\/www.wikitechy.com\/interview-questions\/?p=244"},"modified":"2021-09-14T10:14:01","modified_gmt":"2021-09-14T10:14:01","slug":"how-to-link-apache-solr-to-mongodb","status":"publish","type":"post","link":"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/","title":{"rendered":"How to link Apache Solr to MongoDB ?"},"content":{"rendered":"<div class=\"TextHeading\">\n<div class=\"hddn\">\n<h2 id=\"installation\" class=\"color-purple\" style=\"text-align: justify;\">Installation<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>New in mongo-connector 2.5.0, to install mongo-connector with the Solr-doc-manager run:<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"CodeContent\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<figure class=\"highlight\"><div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-python code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-python code-embed-code\">Pip install &#039;mongo-connector[solr]&#039;<\/code><\/pre> <\/div><\/figure>\n<\/div>\n<\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"setup\" class=\"color-purple\">Setup<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Create Solr cores<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"make-sure-the-lukerequesthandler-is-enabled\" class=\"color-purple\">Make sure the LukeRequestHandler is enabled<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>This line should be present in your solrconfig.xml file:<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"CodeContent\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<figure class=\"highlight\"><div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-python code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-python code-embed-code\">&lt;requestHandler name=&quot;\/admin\/luke&quot; class=&quot;org.apache.solr.handler.admin.LukeRequestHandler&quot; \/&gt;<\/code><\/pre> <\/div><\/figure>\n<\/div>\n<\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"set-up-your-schema\" class=\"color-purple\">Set up your Schema<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Mongo Connector stores metadata in every document to help handle rollbacks.<\/li>\n<li>To support these data, you&#8217;ll need to include the following to your schema.xml:<\/li>\n<\/ul>\n<div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-python code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-python code-embed-code\">&lt;field name=&quot;_ts&quot; type=&quot;long&quot; indexed=&quot;true&quot; stored=&quot;true&quot; \/&gt;<br\/>&lt;field name=&quot;ns&quot; type=&quot;string&quot; indexed=&quot;true&quot; stored=&quot;true&quot;\/&gt;<\/code><\/pre> <\/div>\n<\/div>\n<\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"the-basics\" class=\"color-purple\">The Basics:<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Mongo Connector can replicate to Apache Solr search engine by using the Solr DocManager.<\/li>\n<li>To start the connector, you must pass in the base URL for the Solr core to which you want to synchronize.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p style=\"text-align: justify;\">The most basic usage is the following:<\/p>\n<div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-python code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-python code-embed-code\">Mongo-connector -m localhost:27017 -t http:\/\/localhost:8983\/solr -d solr_doc_manager<\/code><\/pre> <\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"mongo-connector-and-schema-xml\" class=\"color-purple\">Mongo Connector and schema.xml<\/h2>\n<\/div>\n<\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"configuring-solr\" class=\"color-purple\">Configuring Solr<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Refer to the Apache documentation for configuring Solr and SolrCloud.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"n-b-key-names-and-document-flattening\" class=\"color-purple\">N.B.: Key Names and Document Flattening<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>Mongo Connector automatically &#8220;flattens&#8221; MongoDB documents.<\/li>\n<li>Fields within sub-documents can be referenced by their &#8220;dot-separated path&#8221; within the document.<\/li>\n<li>Likewise, array fields are unrolled, so that individual elements are accessible by the field&#8217;s original name, plus a &#8220;.&#8221;, plus the index within the array that the element occupied.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<p align=\"justify\">An example:<\/p>\n<div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-python code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-python code-embed-code\">{<br\/>    &quot;subdoc&quot;: {<br\/>        &quot;a&quot;: 1,<br\/>        &quot;b&quot;: 2,<br\/>        &quot;c&quot;: 3,<br\/>        &quot;array&quot;: [<br\/>            {&quot;name&quot;: &quot;elmo&quot;},<br\/>            {&quot;name&quot;: &quot;oscar&quot;}<br\/>        ]<br\/>    }<br\/>}<\/code><\/pre> <\/div>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>It will become the following in Solr:<\/li>\n<\/ul>\n<div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-python code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-python code-embed-code\">{<br\/>    &quot;subdoc.a&quot;: 1,<br\/>    &quot;subdoc.b&quot;: 2,<br\/>    &quot;subdoc.c&quot;: 3,<br\/>    &quot;subdoc.array.0.name&quot;: &quot;elmo&quot;,<br\/>    &quot;subdoc.array.1.name&quot;: &quot;oscar&quot;<br\/>}<\/code><\/pre> <\/div>\n<\/div>\n<\/div>\n<div class=\"ImageContent\" style=\"text-align: justify;\">\n<div class=\"hddn\"><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter size-medium\" src=\"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png\" alt=\"Apache Solr Mongodb\" width=\"1002\" height=\"572\" \/><\/div>\n<\/div>\n<div class=\"TextHeading\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<h2 id=\"schema-xml\" class=\"color-purple\">Schema.xml<\/h2>\n<\/div>\n<\/div>\n<div class=\"Content\" style=\"text-align: justify;\">\n<div class=\"hddn\">\n<ul>\n<li>In addition, Mongo Connector comes with an example schema.xml file that can help get you started integrating MongoDB with Apache Solr search.<\/li>\n<li>Solr reads schema.xml in order to find field types, fields that documents may have the primary key, and more.<\/li>\n<li>MongoDB Connector try to acquire the schema for Apache Solr by using the LukeRequestHandler at a particular URI admin\/luke\/?show=schema&amp;wt=json which is appended to the base of the Apache Solr URL.<\/li>\n<li>So, in the above example, Mongo Connector tries to get the schema for Apache Solr by sending a GET request to http:\/\/localhost:8983\/solr\/admin\/luke\/?show=schema&amp;wt=json.<\/li>\n<li>Mongo Connector will drop fields from MongoDB documents that are not confirmed in your Apache Solr core&#8217;s schema in order to avoid Solr throw exceptions and fail to add those documents.<\/li>\n<li>If you do not describe the fields then you desire in schema.xml and reload the Apache Solr core, Mongo Connector will merrily continue stripping your MongoDB documents of the offending fields.<\/li>\n<li>You can able to check what Apache Solr thinks the schema to your core by visiting the aforementioned endpoint in browser.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div class=\"Content\">\n<div class=\"hddn\"><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Answer:New in mongo-connector 2.5.0, to install mongo-connector with the Solr-doc-manager run:<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"passster_activate_protection":false,"passster_protect_child_pages":"","passster_protection_type":"password","passster_password":"","passster_activate_overwrite_defaults":"","passster_headline":"","passster_instruction":"","passster_placeholder":"","passster_button":"","passster_id":"","passster_activate_misc_settings":"","passster_redirect_url":"","passster_hide":"no","passster_area_shortcode":"","gtb_hide_title":false,"gtb_wrap_title":false,"gtb_class_title":"","gtb_remove_headerfooter":false,"footnotes":""},"categories":[684],"tags":[195,702,707,841,491,203,199,214,198,363,209,844,205,830,222,196,212,831,712,213,824,838,710,835,840,842,207,711,366,833,361,204,282,367,206,846,836,706,843,845,837,839,717,715,721,834,200,197,280,364,701,740,713,285],"class_list":["post-244","post","type-post","status-publish","format-standard","hentry","category-apache-solr","tag-accenture-interview-questions-and-answers","tag-apache-solr-documentation","tag-apache-solr-download","tag-apache-solr-wiki","tag-applied-materials-interview-questions-and-answers","tag-capgemini-interview-questions-and-answers","tag-casting-networks-india-pvt-limited-interview-questions-and-answers","tag-cgi-group-inc-interview-questions-and-answers","tag-chetu-interview-questions-and-answers","tag-ciena-corporation-interview-questions-and-answers","tag-collabera-technologies-interview-questions-and-answers","tag-connect-solr-to-mongodb","tag-dell-international-services-india-pvt-ltd-interview-questions-and-answers","tag-difference-between-solr-and-mongodb","tag-flipkart-interview-questions-and-answers","tag-ibm-interview-questions-and-answers","tag-indecomm-global-services-interview-questions-and-answers","tag-indexing-mongodb-with-solr","tag-indiabulls-technology-solutions-ltd-interview-questions-and-answers","tag-infosys-technologies-interview-questions-and-answers","tag-install-solr","tag-integrating-mongodb-with-solr","tag-mavenir-interview-questions-and-answers","tag-mongodb-connectors","tag-mongodb-solr-integration-java","tag-mongodb-vs-solr","tag-mphasis-interview-questions-and-answers","tag-nagarro-software-pvt-ltd-interview-questions-and-answers","tag-netapp-interview-questions-and-answers","tag-node-js-mongodb-solr","tag-opentext-technologies-interview-questions-and-answers","tag-oracle-corporation-interview-questions-and-answers","tag-persistent-systems-interview-questions-and-answers","tag-rbs-india-development-centre-pvt-ltd-interview-questions-and-answers","tag-sap-labs-india-pvt-ltd-interview-questions-and-answers","tag-solr-connector","tag-solr-download","tag-solr-example","tag-solr-mongodb","tag-solr-mongodb-connector","tag-solr-mongodb-data-import-handler","tag-solr-mongodb-tutorial","tag-solr-search-example","tag-solr-tutorial","tag-solr-tutorial-example","tag-solr-tutorial-javasolr-tutorial-pdf","tag-tech-mahindra-interview-questions-and-answers","tag-unitedhealth-group-interview-questions-and-answers","tag-virtusa-consulting-services-pvt-ltd-interview-questions-and-answers","tag-wells-fargo-interview-questions-and-answers","tag-what-is-apache-solr","tag-what-is-solr","tag-wm-global-technology-services-india-pvt-ltd-interview-questions-and-answers","tag-xoriant-solutions-pvt-ltd-interview-questions-and-answers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to link Apache Solr to MongoDB ? - Apache Solr<\/title>\n<meta name=\"description\" content=\"How to link Apache Solr to MongoDB ? - apache solr tutorial - Mongo Connector can replicate to Apache Solr search engine by using the Solr DocManager\" \/>\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.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to link Apache Solr to MongoDB ? - Apache Solr\" \/>\n<meta property=\"og:description\" content=\"How to link Apache Solr to MongoDB ? - apache solr tutorial - Mongo Connector can replicate to Apache Solr search engine by using the Solr DocManager\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/\" \/>\n<meta property=\"og:site_name\" content=\"Wikitechy\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-12T15:29:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-14T10:14:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png\" \/>\n<meta name=\"author\" content=\"Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/\",\"url\":\"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/\",\"name\":\"How to link Apache Solr to MongoDB ? - Apache Solr\",\"isPartOf\":{\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png\",\"datePublished\":\"2021-07-12T15:29:04+00:00\",\"dateModified\":\"2021-09-14T10:14:01+00:00\",\"author\":{\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757\"},\"description\":\"How to link Apache Solr to MongoDB ? - apache solr tutorial - Mongo Connector can replicate to Apache Solr search engine by using the Solr DocManager\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/#primaryimage\",\"url\":\"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png\",\"contentUrl\":\"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png\"},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/#website\",\"url\":\"https:\/\/www.wikitechy.com\/interview-questions\/\",\"name\":\"Wikitechy\",\"description\":\"Interview Questions\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.wikitechy.com\/interview-questions\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757\",\"name\":\"Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"caption\":\"Editor\"},\"url\":\"https:\/\/www.wikitechy.com\/interview-questions\/author\/editor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to link Apache Solr to MongoDB ? - Apache Solr","description":"How to link Apache Solr to MongoDB ? - apache solr tutorial - Mongo Connector can replicate to Apache Solr search engine by using the Solr DocManager","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.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/","og_locale":"en_US","og_type":"article","og_title":"How to link Apache Solr to MongoDB ? - Apache Solr","og_description":"How to link Apache Solr to MongoDB ? - apache solr tutorial - Mongo Connector can replicate to Apache Solr search engine by using the Solr DocManager","og_url":"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/","og_site_name":"Wikitechy","article_published_time":"2021-07-12T15:29:04+00:00","article_modified_time":"2021-09-14T10:14:01+00:00","og_image":[{"url":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png"}],"author":"Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editor","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/","url":"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/","name":"How to link Apache Solr to MongoDB ? - Apache Solr","isPartOf":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/#primaryimage"},"image":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png","datePublished":"2021-07-12T15:29:04+00:00","dateModified":"2021-09-14T10:14:01+00:00","author":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757"},"description":"How to link Apache Solr to MongoDB ? - apache solr tutorial - Mongo Connector can replicate to Apache Solr search engine by using the Solr DocManager","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.wikitechy.com\/interview-questions\/apache-solr\/how-to-link-apache-solr-to-mongodb\/#primaryimage","url":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png","contentUrl":"https:\/\/cdn.wikitechy.com\/interview-questions\/apache-solr\/apache-solr-mongodb.png"},{"@type":"WebSite","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#website","url":"https:\/\/www.wikitechy.com\/interview-questions\/","name":"Wikitechy","description":"Interview Questions","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wikitechy.com\/interview-questions\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757","name":"Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","caption":"Editor"},"url":"https:\/\/www.wikitechy.com\/interview-questions\/author\/editor\/"}]}},"_links":{"self":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/244","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/comments?post=244"}],"version-history":[{"count":4,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/244\/revisions"}],"predecessor-version":[{"id":3716,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/244\/revisions\/3716"}],"wp:attachment":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/media?parent=244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/categories?post=244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/tags?post=244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}