QdbDouble Class |
Namespace: Quasardb
The QdbDouble type exposes the following members.
| Name | Description | |
|---|---|---|
| Add |
Modifies the value of the double in the database.
| |
| AttachTag(String) |
Adds a tag to the entry.
(Inherited from QdbEntry.) | |
| AttachTag(QdbTag) |
Adds a tag to the entry.
(Inherited from QdbEntry.) | |
| DetachTag(String) |
Removes a tag from the entry.
(Inherited from QdbEntry.) | |
| DetachTag(QdbTag) |
Removes a tag from the entry.
(Inherited from QdbEntry.) | |
| ExpiresAt |
Sets an absolute expiry time.
(Inherited from QdbExpirableEntry.) | |
| ExpiresFromNow |
Sets an relative expiry time.
(Inherited from QdbExpirableEntry.) | |
| Get |
Gets the value of the double in the database.
| |
| GetExpiryTime |
Gets the expiry time.
(Inherited from QdbExpirableEntry.) | |
| GetTags |
Gets the tags of the entry
(Inherited from QdbEntry.) | |
| HasTag(String) |
Checks if the entry has the specified tag.
(Inherited from QdbEntry.) | |
| HasTag(QdbTag) |
Checks if the entry has the specified tag.
(Inherited from QdbEntry.) | |
| Put |
Sets the value of the double, fails if it already exists.
| |
| Remove |
Removes the entry from the database.
(Inherited from QdbEntry.) | |
| Update |
Sets the value of the double, fails if it already exists.
|
var cluster = new QdbCluster("qdb://127.0.0.1:2836"); cluster.Double("some name").Put(42.0);