Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%IPM] >  [General] >  [SemanticVersion] >  [Index]
Private  Storage   

index class %IPM.General.SemanticVersion.Index extends %Library.FunctionalIndex

Functional index on semantic versions. This serves two purposes:

  1. Enable searching based on module name and semantic version expression without scanning the whole extent
  2. Simplify ordering based on latest semantic version, properly handling major/minor/patch version numbers and prerelease designations.

To use this index in a class, define an index on a string property (the module name) and a property of type %IPM.General.SemanticVersion. 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 %IPM.Repo.Filesystem.Cache.

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.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
13


Summary

Methods
Delete DeleteIndex Find GetIndexGlobalNode
IndexLocation IndexLocationForCompile Insert InsertIndex
Node PurgeIndex SegmentFinalize SegmentInitialize
SegmentInsert SortBeginIndex SortEndIndex UpdateIndex


Methods

• classmethod Delete(pGlobal, pID, pName, pVersion)
• classmethod DeleteIndex(pID As %CacheString, pArg... As %Binary)
This method is invoked when an existing instance of a class is deleted.
• classmethod Find(pName As %Binary, pVersionExpression As %String = "", pParameters As %String = "") as %Library.Binary [ SQLProc = ]
• classmethod GetIndexGlobalNode(pGlobal, pName, pVersion) as %String
• classmethod IndexLocation()
• classmethod IndexLocationForCompile(pClassName As %String, pIndexName As %String) as %String
• classmethod Insert(pGlobal, pID, pName, pVersion)
• classmethod InsertIndex(pID As %CacheString, pArg... As %Binary)
This method is invoked when a new instance of a class is inserted into the database.
• classmethod Node(pName, pVersion) as %String
• classmethod PurgeIndex()
• classmethod SortBeginIndex()
• classmethod SortEndIndex()
• classmethod UpdateIndex(pID As %CacheString, pArg... As %Binary)
This method is invoked when an existing instance of a class is updated.


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.