Class Reference
IRIS for UNIX 2024.1.2
|
|
Private
Storage
|
Functional index on semantic versions. This serves two purposes:
To use this index in a class, define an index on a string property (the module name) and a property of type
Index SemVer On (Name, Version) As %IPM.General.SemanticVersion.Index;
You must also define a property with the same name as that index, as follows:
Property SemVer As %String(MAXLEN = 512) [ SqlComputeCode = {set {*} = ##class(%IPM.Repo.Filesystem.Cache).SemVerNode({Name},{Version})}, SqlComputed, SqlComputeOnChange = (%%INSERT, %%UPDATE) ];
For an example, see
To use the generated Find method and the %IPM.General.SemanticVersion.Find (as in the example of %IPM_PackageManager_Server._Module):
SELECT Name,VersionString FROM %IPM_PackageManager_Server._Module WHERE ID %INSET %IPM_PackageManager_Server.Module_SemVerFind('HS.JSON','0.x','snapshot')
To facilitate ordering by semantic version, classes that define such indices may also implement class queries to wrap %IPM.General.SemanticVersion.Find:Matches.
|
|
|
This method is invoked when an existing instance of a class is deleted.
This method is invoked when a new instance of a class is inserted into the database.
This method is invoked when an existing instance of a class is updated.