<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pro-Tek Blog &#187; Elasticsearch</title>
	<atom:link href="http://www.pro-tekconsulting.com/blog/tag/elasticsearch-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pro-tekconsulting.com/blog</link>
	<description>For UI developers / UI designers and UI trends</description>
	<lastBuildDate>Thu, 05 Sep 2019 03:59:47 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.34</generator>
	<item>
		<title>WHAT IS THE USE OF ATTRIBUTES-ENABLED, INDEX, AND STORE?</title>
		<link>http://www.pro-tekconsulting.com/blog/what-is-the-use-of-attributes-enabled-index-and-store/</link>
		<comments>http://www.pro-tekconsulting.com/blog/what-is-the-use-of-attributes-enabled-index-and-store/#comments</comments>
		<pubDate>Tue, 07 Mar 2017 05:02:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[ELASTICSEARCH]]></category>
		<category><![CDATA[Elasticsearch]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=1881</guid>
		<description><![CDATA[<p>What is the use of attributes- enabled, index, and store? The enabled attribute applies to various ElasticSearch specific/created fields such as _index and _size. User-supplied fields do not have an &#8220;enabled&#8221; attribute. Store means the data is stored by Lucene will return this data if asked. Stored fields are not necessarily searchable. By default, fields are not stored, [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/what-is-the-use-of-attributes-enabled-index-and-store/">WHAT IS THE USE OF ATTRIBUTES-ENABLED, INDEX, AND STORE?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>What is the use of attributes- enabled, index, and store?</h4>
<p>The enabled attribute applies to various ElasticSearch specific/created fields such as _index and _size. User-supplied fields do not have an &#8220;enabled&#8221; attribute.</p>
<p>Store means the data is stored by Lucene will return this data if asked. Stored fields are not necessarily searchable. By default, fields are not stored, but full source is. Since you want the defaults (which makes sense), simply do not set the store attribute.</p>
<p>The index attribute is used for searching. Only indexed fields can be searched. The reason for the differentiation is that indexed fields are transformed during analysis, so you cannot retrieve the original data if it is required.</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/what-is-the-use-of-attributes-enabled-index-and-store/">WHAT IS THE USE OF ATTRIBUTES-ENABLED, INDEX, AND STORE?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/what-is-the-use-of-attributes-enabled-index-and-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOES ELASTICSEARCH HAVE A SCHEMA?</title>
		<link>http://www.pro-tekconsulting.com/blog/does-elasticsearch-have-a-schema/</link>
		<comments>http://www.pro-tekconsulting.com/blog/does-elasticsearch-have-a-schema/#comments</comments>
		<pubDate>Tue, 07 Mar 2017 04:39:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[ELASTICSEARCH]]></category>
		<category><![CDATA[Elasticsearch]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=1879</guid>
		<description><![CDATA[<p>Does ElasticSearch have a schema? Yes, Elastic search can have a schema. A schema is a description of one or more fields that describes the document type and how to handle the different fields of a document. The schema in Elasticsearch is a mapping that describes the fields in the JSON documents along with their [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/does-elasticsearch-have-a-schema/">DOES ELASTICSEARCH HAVE A SCHEMA?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>Does ElasticSearch have a schema?</h4>
<p>Yes, Elastic search can have a schema. A schema is a description of one or more fields that describes the document type and how to handle the different fields of a document. The schema in Elasticsearch is a mapping that describes the fields in the JSON documents along with their data type, as well as how they should be indexed in the Lucene indexes that lie under the hood. Because of this, in Elasticsearch terms, we usually call this schema a “mapping”.</p>
<p>Elasticsearch has the ability to be schema-less, which means that documents can be indexed without explicitly providing a schema. If you do not specify a mapping, Elasticsearch will by default generate one dynamically when detecting new fields in documents during indexing.</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/does-elasticsearch-have-a-schema/">DOES ELASTICSEARCH HAVE A SCHEMA?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/does-elasticsearch-have-a-schema/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
