Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cloudfilesearch [2019_10_22 09:26] – [1 Searching files Web] jimcloudfilesearch [2024_04_22 21:30] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +# File Search
  
- +## Searching Files (Web Interface)
- +
- +
-====== File Search ====== +
- +
- +
-===== 1 Searching Files (Web Interface) =====+
  
 There are two means to search for files from the web interface, 'filter', and 'search'. There are two means to search for files from the web interface, 'filter', and 'search'.
Line 24: Line 19:
 Files can be searched in a variety of ways: Files can be searched in a variety of ways:
  
-  * Exact Phrase: Search for an exact match to a phrase +  * //Exact Phrase:// Search for an exact match to a phrase 
-  * Starts with: Search for the characters that start a phrase ie. abc - will find all files beginning with abc +  * //Starts with:// Search for the characters that start a phrase ie. abc - will find all files beginning with abc 
-  * Ends with: Search for the characters that end a phrase ie. xyz.<extension> will find all files ending with xyz +  * //Ends with:// Search for the characters that end a phrase ie. xyz.<extension> will find all files ending with xyz 
-  * All words: Enter multiple words separated by spaces which will be searched for +  * //All words:// Enter multiple words separated by spaces which will be searched for 
-  * Any word: Enter multiple words and search for occurrences of any +  * //Any word:// Enter multiple words and search for occurrences of any 
-  * By file extension: Search for extension types+  * //By file extension:// Search for extension types
    
 All searches occur **across all storage endpoints** mapped to an account and searches can be saved. All searches occur **across all storage endpoints** mapped to an account and searches can be saved.
-===== 2 Client Tools ===== 
  
 +## Client Tools
  
 +{{::windows_search_window.png?600|}}
  
-{{:/cloudfilesearch:steps:sme_2_client_tools.png}}+Desktop and client apps also offer a similar search experience. Above is an example from the Windows desktop app.
  
-Desktop and client tools also offer similar search options. Above are examples of windows and iOS.+## Cloud Drive
  
 +From the Windows Cloud Drive right-click on a folder from the Explorer menu and choose Cloud Actions > Search.
  
-===== 3 Content Search =====+## Content Search
  
-Content search is supported with our on-premises cloud appliance with the [[http://lucene.apache.org/core/|Apache Lucene search engine]]. For more information see [[cloudappliance/solr]].+Content search is supported with our on-premises cloud appliance with the [[https://solr.apache.org/|Apache Solr search engine]]. For more information see [[server/solr]].
  
 {{:/cloudfilesearch:steps:sme_3_deeper_search_option.png}} {{:/cloudfilesearch:steps:sme_3_deeper_search_option.png}}
  
-==== 3.1 Content Search Options ====+ 
 +### Content Search Options
  
 Search input: The input string is first split into search tokens, by its spaces and punctuation characters (which are ignored). Each of these search tokens are queried in Solr (using AND or OR operators). How these tokenized search terms are used in the query is dependent on the modifier flags that you have set when running the query. Searches are case insensitive. Search input: The input string is first split into search tokens, by its spaces and punctuation characters (which are ignored). Each of these search tokens are queried in Solr (using AND or OR operators). How these tokenized search terms are used in the query is dependent on the modifier flags that you have set when running the query. Searches are case insensitive.
Line 59: Line 57:
    * To find documents that must include all whole words, use the "AND" operator. For example, "a AND summer AND holidays"    * To find documents that must include all whole words, use the "AND" operator. For example, "a AND summer AND holidays"
  
- * **Begins with word** - Given each of the word tokens, it searches for documents either containing at least one of those words exactly, or where a word starts with either of those terms. The pseudo query looks like: "a\*" OR "summer\*" OR "holiday".+ * **Begins with word** - Given each of the word tokens, it searches for documents either containing at least one of those words exactly, or where a word starts with either of those terms. The pseudo query looks like: "a\*" OR "summer\*" OR "holiday\*".
 So, this could match "Where are you going on your holidays?"  ("are" and "holidays" match) So, this could match "Where are you going on your holidays?"  ("are" and "holidays" match)