OpenMeta uses a file system feature called 'extended attributes' (or 'xattr' for short), that allows arbitrary data to be stored alongside a file, very useful for metadata. Data stored in a special xattr domain is indexed by Spotlight, which is then used to find tagged files. You can see which xattrs are on a file by executing the following command in the terminal:
xattr -l /path/to/fileThe data in the Spotlight DB can be accessed by the following command:
mdls /path/to/file

