This conversation has been locked due to inactivity. Please create a new post.
This conversation has been locked due to inactivity. Please create a new post.
Hi,
Is this possible to do not index the filename of the Asset?
The customer do not want to retrieve assets by their filenames.
Would it be possible?
I know I can exclude a property from be indexed, but didn't see anything about this.
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Please have a look at this documentation link :-
//Link:- https://docs.adobe.com/docs/en/aem/6-1/deploy/platform/queries-and-indexing.html
Configuring the indexes
Indexes are configured as nodes in the repository under the oak:index node.
The type of the index node must be oak:QueryIndexDefinition. Several configuration options are available for each indexer as node properties. For more information, see the configuration details for each indexer type below.
The Property Index is generally useful for queries that have property constraints but are not full-text. It can be configured by following the below procedure:
Open CRXDE by going to http://localhost:4502/crx/de/index.jsp
Create a new node under oak:index
Name the node PropertyIndex, and set the node type to oak:QueryIndexDefinition
Set the following properties for the new node:
This particular example will index the jcr:uuid property, whose job is to expose the universally unique idetifier (UUID) of the node it is attached to.
Save the changes.
The Property Index has the following configuration options:
I hope this would act as some help to you.
Thanks and Regards
Kautuk Sahni
Views
Replies
Total Likes
which version of AEM are you using ??
when you say do not want to retrieve assets by filenames - Is it via search in author instance ? that will do a full text search. Indexes would just help in searching faster and by removing the indexes doesnt mean to hide from searching.
Views
Replies
Total Likes
Hi @bsloki,
I am using 6.1.
I see your point. In this case if it is not possible I will check with the users.
Thanks
Views
Replies
Total Likes
Please have a look at this documentation link :-
//Link:- https://docs.adobe.com/docs/en/aem/6-1/deploy/platform/queries-and-indexing.html
Configuring the indexes
Indexes are configured as nodes in the repository under the oak:index node.
The type of the index node must be oak:QueryIndexDefinition. Several configuration options are available for each indexer as node properties. For more information, see the configuration details for each indexer type below.
The Property Index is generally useful for queries that have property constraints but are not full-text. It can be configured by following the below procedure:
Open CRXDE by going to http://localhost:4502/crx/de/index.jsp
Create a new node under oak:index
Name the node PropertyIndex, and set the node type to oak:QueryIndexDefinition
Set the following properties for the new node:
This particular example will index the jcr:uuid property, whose job is to expose the universally unique idetifier (UUID) of the node it is attached to.
Save the changes.
The Property Index has the following configuration options:
I hope this would act as some help to you.
Thanks and Regards
Kautuk Sahni
Views
Replies
Total Likes
Hi Kautuk,
Thanks for your reply.
I saw this documentation. Do you know what would be the property name I would need to configure for this?
As I could see the filename is the node name in JCR I didn't find How to disable this to be indexed.
Thanks
Views
Replies
Total Likes
Views
Likes
Replies