persistent class %iFind.Word
extends %Persistent
This table contains all words identified by iFind indices in this namespace using namespace-wide
shared storage (cf the IFINDSHAREDSTORAGELOCATION parameter in %iFind.Index.Basic).
Note that this may also include transformed words. To only find original words wrt a specific
transformation, use %iFind.OriginalWord.
parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted.
Tables are projected to SQL as READONLY.
property Key
as %Integer;
Internal identifier of this word
property StrippedWordId
as %iFind.Word [ Calculated ];
Calculated property returning the word object equivalent to this object, with all punctuation stripped off.
property Value
as %String(COLLATION="SQLSTRING",MAXLEN="");
String value of this word
classmethod GetStrippedWordId(pString As %String, pKeepChars As %String = $$$STRIPKEEP)
as %Integer
Returns the word ID for the supplied string, stripped of all punctuation.
index (KeyIdx on Key) [IdKey,Unique];
index (ValueIdx on Value) [Type = collatedkey,Unique];