spell:load

spell:load(
   $path as xs:string,
   $uri as xs:string
) as empty-sequence()

Summary

Add the words from the file specified in $path to the dictionary at $uri. If a document exists with the specified URI, it is replaced with this one. Note that words that are 64 characters or greater will never be returned as suggestions from spell:suggest or spell:suggest-detailed .

Parameters
path The path to a file containing the dictionary.
uri The URI of the dictionary.

Usage Notes

Dictionaries loaded with the spell:load function are automatically added to the following collections:

Example

  xquery version "1.0-ml";
  import module namespace spell = "http://marklogic.com/xdmp/spell" 
		  at "/MarkLogic/spell.xqy";

  spell:load("c:\dictionaries\spell.xml", "/mySpell/spell.xml")
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy