| attach_tags {quasardb} | R Documentation |
Attach one or many tags to an existing entry.
When attaching tags, no error will be raised if the entry has been tagged with at least one tag (i.e. when this entry had not already been tagged with all given tags).
attach_tags(handle, entry, tags)
handle |
A valid cluster opened using 'connect'. |
entry |
An alias (key) of an entry. |
tags |
A vector of tag names to attach. |
https://doc.quasardb.net/master/concepts/tags.html
handle <- connect("qdb://127.0.0.1:2836")
attach_tags(handle, "key", "tag")