Expand my Community achievements bar.

AEM 6.3: Checking indexes in Embedded Solr

Avatar

Level 4

I'm trying to implement Embedded Solr. I've tried to update the content and i'm unable to see new indexed content in search. I'm not sure if they're getting reIndexed after i update any code

Where can i find the updates indexes and data for embedded solr, any URL like remote server to validate the behavior? How to check response typically JSON?

Suggest me the properties/configs to Index after updating any content

Currently I'm using

<?xml version="1.0" encoding="UTF-8"?>

<jcr:root xmlns:oak="http://jackrabbit.apache.org/oak/ns/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"

    jcr:primaryType="oak:QueryIndexDefinition"

    async="async"

    compatVersion="{Long}2"

    type="solr">

    <indexRules jcr:primaryType="nt:unstructured">

        <nt:base

            jcr:primaryType="nt:unstructured"

            includePropertyTypes="all">

            <properties jcr:primaryType="nt:unstructured">

                <prop0

                    jcr:primaryType="nt:unstructured"

                    analyzed="{Boolean}true"

                    isRegexp="{Boolean}true"

                    name="^[^\\/]*$"

                    nodeScopeIndex="{Boolean}true"

                    propertyIndex="{Boolean}false"

                    useInExcerpt="{Boolean}true"

                    useInSpellcheck="{Boolean}true"

                    forceReindex="{Boolean}true"/>

            </properties>

        </nt:base>

    </indexRules>

</jcr:root>

1 Reply