# Store channel metadata (/en/realtime-media/rtm/build/manage-presence-and-metadata/storage/store-channel-metadata/windows)

> For AI agents: see the complete documentation index at [llms.txt](/llms.txt).

The Signaling storage service enables you to store and share contextual channel data in your app, such as props, announcements, member lists, and relationship chains. When channel metadata is set, updated, or deleted, the SDK triggers a storage event notification. Other users in the channel receive this notification within 100ms and use the information according to your business logic.

    ## Understand the tech [#understand-the-tech-5]

    Use channel metadata to store and share channel level information such as room attributes, group announcements, and auction item price updates. A set of channel metadata for a specific channel facilitates business-level data storage and real-time notifications. Each channel has only one set of channel metadata, but each set may contain multiple metadata items. For relevant restrictions, refer to the [API usage restrictions](../../../reference/limitations). Each metadata item has `key`, `value`, and `revision` properties.

    Channel metadata is stored permanently in the Signaling database. The data persists even after a channel is destroyed. You must explicitly delete it to remove it from the database. This feature impacts your storage billing. Refer to [Pricing](../../../reference/pricing) for details.

    The storage service is available for both message channels and stream channels. Use the `channelType` parameter in the storage event to determine the channel type.

    ## Prerequisites [#prerequisites-5]

    Ensure that you have:

    * Integrated the Signaling SDK in your project.
    * Implemented the framework functionality from the [SDK quickstart](../../../quickstart) page.
    * Enabled storage in [Storage configuration](../../../manage-agora-account#storage-configuration).

    ## Implement channel metadata storage [#implement-channel-metadata-storage-5]

    The section shows you how to implement channel metadata storage in your Signaling app.

    ### Set channel metadata [#set-channel-metadata-5]

    To create a new metadata item for the channel, or to update the `value` of an existing item, call `setChannelMetadata`. This method creates a new item in the channel metadata if the specified `key` does not exist, or overwrites the associated `value` if a metadata item with the specified `key` already exists.

    The following example saves a set of metadata items for a stream channel. Signaling adds `timestamp` and `authorUid` information to each metadata item it stores.

    ```cpp
    Metadata metadata;
    std::vector<agora::rtm::MetadataItem> items;
    MetadataItem item0("Quantity", "20");
    MetadataItem item1("Announcement", "Welcome to our shop!");
    MetadataItem item2("T-shirt", "100");
    items.emplace_back(item0);
    items.emplace_back(item1);
    items.emplace_back(item2);

    MetadataOptions options;
    options.recordTs = true;
    options.recordUserId = true;

    uint64_t requestId;
    rtmClient->getStorage()->setChannelMetadata("channel1", RTM_CHANNEL_TYPE_MESSAGE, metadata, options, "lockName", requestId);
    ```

    After you call this method, the SDK triggers the `onSetChannelMetadataResult` callback to return the call result.

    ```cpp
    // Asynchronous callback
    class RtmEventHandler : public IRtmEventHandler {
        void onSetChannelMetadataResult(const uint64_t requestId, const char *channelName, RTM_CHANNEL_TYPE channelType, RTM_ERROR_CODE errorCode) override {
            if (errorCode != RTM_ERROR_OK) {
                // set channel metadata failed
            } else {
                // set channel metadata success
            }
        }
    };
    ```

    Additionally, Signaling triggers an `onStorageEvent` notification of event type `RTM_STORAGE_EVENT_TYPE_UPDATE` within 100 ms to inform other channel members.

    ### Get channel metadata [#get-channel-metadata-5]

    To retrieve all metadata items associated with a specific channel, call `getChannelMetadata` by specifying the channel name and the channel type. Refer to the following example:

    ```cpp
    uint64_t requestId;
    rtmClient->getStorage()->getChannelMetadata("channel1", RTM_CHANNEL_TYPE_MESSAGE, requestId);
    ```

    After you call this method, the SDK triggers the `onGetChannelMetadataResult` callback to return the call result.

    ```cpp
    // Asynchronous callback
    class RtmEventHandler : public IRtmEventHandler {
        void onGetChannelMetadataResult(const uint64_t requestId, const char *channelName, RTM_CHANNEL_TYPE channelType, const Metadata& data, RTM_ERROR_CODE errorCode) override {
            if (errorCode != RTM_ERROR_OK) {
                printf("GetChannelMetadata failed error is %d reason is %s\n", errorCode, getErrorReason(errorCode));
            } else {
                printf("GetChannelMetadata success %d channel: %s, channel type: %d\n");
                for (int i = 0 ; i < data.itemCount; i++) {
                    printf("key: %s value: %s revision: %lld\n", data.items[i].key, data.items[i].value, data.items[i].revision);
                }
            }
        }
    };
    ```

    Signaling SDK returns the following data structure:

    ```js
    {
        majorRevision: 734874892,
        metadata: {
            "Quantity": {
                value: "20",
                revision: 734874888,
                updated: 1688978391900,
                authorUid: "Tony"
            },
            "Announcement": {
                value: "Welcome to our Shop!",
                revision: 734874333,
                updated: 1688978391800,
                authorUid: "Tomas"
            },
            "T-shirt": {
                value: "100",
                revision: 734874222,
                updated: 168897839100,
                authorUid: "Adam"
            }
        }
    }
    ```

    ### Update channel metadata [#update-channel-metadata-5]

    To modify existing metadata items for a specified channel, call `updateChannelMetadata`. If the metadata item does not exist, an error is returned. This method is useful for business use-cases that require permission control on creating new metadata items. For example, consider the following use-cases:

    * In an e-commerce auction, only administrators or product owners are authorized to list new products and set new attributes, while bidders may only modify price attributes.
    * In a gaming environment, only the administrator may define permissions as room properties.

    The following example updates the value of a metadata item:

    ```cpp
    Metadata metadata;
    std::vector<agora::rtm::MetadataItem> items;
    items.push_back(MetadataItem("T-shirt", "299"));
    metadata.items = items.data();
    metadata.itemCount = items.size();

    MetadataOptions options;
    options.recordTs = true;
    options.recordUserId = true;

    uint64_t requestId;
    rtmClient->getStorage()->updateChannelMetadata("channel1", RTM_CHANNEL_TYPE_MESSAGE, metadata, options, "lockName", requestId);
    ```

    After you call this method, the SDK triggers the `onUpdateChannelMetadataResult` callback to return the call result.

    ```cpp
    // Asynchronous callback
    class RtmEventHandler : public IRtmEventHandler {
        void onUpdateChannelMetadataResult(const uint64_t requestId, const char *channelName, RTM_CHANNEL_TYPE channelType, RTM_ERROR_CODE errorCode) override {
            if (errorCode != RTM_ERROR_OK) {
                printf("UpdateChannelMetadata failed error is %d reason is %s\n", errorCode, getErrorReason(errorCode));
            } else {
                printf("UpdateChannelMetadata success\n");
            }
        }
    };
    ```

    Additionally, Signaling triggers an `onStorageEvent` notification of event type `RTM_STORAGE_EVENT_TYPE_UPDATE` within 100 ms to inform other channel members.

    ### Delete channel metadata [#delete-channel-metadata-5]

    To delete metadata items that are no longer required, call `removeChannelMetadata`. Refer to the following sample code:

    ```cpp
    Metadata metadata;
    std::vector<agora::rtm::MetadataItem> items;
    MetadataItem item;
    item.key = "Announcement";
    items.push_back(item);
    metadata.items = items.data();
    metadata.itemCount = items.size();

    MetadataOptions options;
    options.recordTs = true;
    options.recordUserId = true;

    uint64_t requestId;
    rtmClient->getStorage()->removeChannelMetadata("channel1", RTM_CHANNEL_TYPE_MESSAGE, metadata, options, "lockName", requestId);
    ```

    Setting the `value` for a metadata item that is being deleted has no effect.

    After you call this method, the SDK triggers the `onRemoveChannelMetadataResult` callback to return the call result.

    ```cpp
    // Asynchronous callback
    class RtmEventHandler : public IRtmEventHandler {
        void onRemoveChannelMetadataResult(const uint64_t requestId, const char *channelName, RTM_CHANNEL_TYPE channelType, RTM_ERROR_CODE errorCode) override {
            if (errorCode != RTM_ERROR_OK) {
                printf("RemoveChannelMetadata failed error is %d reason is %s\n", errorCode, getErrorReason(errorCode));
            } else {
                printf("RemoveChannelMetadata success\n");
            }
        }
    };
    ```

    Additionally, Signaling triggers an `onStorageEvent` notification of event type `RTM_STORAGE_EVENT_TYPE_UPDATE` within 100 ms to inform other channel members.

    To delete the entire set of metadata for a channel, do not specify any metadata items when calling `removeChannelMetadata`. Refer to the following sample code:

    ```cpp
    Metadata metadata;

    uint64_t requestId;
    rtmClient->getStorage()->removeChannelMetadata("channel1", RTM_CHANNEL_TYPE_MESSAGE, metadata, MetadataOptions(), "lockName", requestId);
    ```

    <CalloutContainer type="info">
      <CalloutDescription>
        Once channel metadata is deleted, it cannot be recovered. If you need data restoration, back up the metadata before deleting it.
      </CalloutDescription>
    </CalloutContainer>

    ## Receive storage event notifications [#receive-storage-event-notifications-5]

    A storage event notification returns the [StorageEvent](/en/api-reference/api-ref/signaling#configstorageeventpropsag_platform) data structure, which includes the [RTM\_STORAGE\_EVENT\_TYPE](/en/api-reference/api-ref/signaling#enumvstorageeventtypepropsag_platform) parameter.

    To receive storage event notifications, implement an event listener. See [event listeners](/en/api-reference/api-ref/signaling#event-listeners) for details. In addition, set the `withMetadata` parameter to `true` when subscribing to or joining a channel.

    #### Event notification mode [#event-notification-mode-5]

    Currently, Signaling only supports the full data update mode. This means that when user or channel metadata is updated, the `data` field in the event notification contains all the attribute data of the user or the channel.

    ## Additional storage features [#additional-storage-features-5]

    To help resolve issues arising from concurrent updates to storage, Signaling offers version control and locking features.

    ### Version control [#version-control-5]

    The Compare and Set (CAS) version control feature in channel metadata storage provides two independent version control parameters. Set one or more of these values according to the needs of your business use-case:

    * `majorRevision` parameter in the `setMajorRevision` method: Enable version number verification of the entire set of channel metadata.

    * `revision` parameter of a `MetadataItem`: Enable version number verification of a single metadata item.

    When setting channel metadata, or a single channel metadata item, use the revision attribute to enable or disable version control as follows:

    * To disable CAS verification, use the default value of `-1` for the `revision` parameter. If the channel metadata or channel metadata item already exists, the value is overwritten. If it does not exist, the SDK creates a metadata item and updates the value.

    * To enable CAS verification, set the `majorRevision` or the `revision` parameter to a positive integer. If the channel metadata or channel metadata item already exists, the SDK updates the corresponding value after successfully verifying the revision number. If the specified revision number does not match the latest revision number in the database, the SDK returns an error code.

    The following sample shows how to use `majorRevision` and `revision` to update channel metadata and a metadata item:

    ```cpp
    Metadata metadata;
    metadata.majorRevision = 734874892;
    std::vector<MetadataItem> items;
    items.emplace_back(MetadataItem("Quantity", "30", 734874888));
    items.emplace_back(MetadataItem("Announcement", "Welcome to our shop!"));
    items.emplace_back(MetadataItem("T-shirt", "101", 734874222));
    metadata.items = items.data();
    metadata.itemCount = items.size();

    MetadataOptions options;
    options.recordTs = true;
    options.recordUserId = true;

    uint64_t requestId;
    rtmClient->getStorage()->updateChannelMetadata("channel1", RTM_CHANNEL_TYPE_MESSAGE, metadata, options, "lockName", requestId);
    ```

    In the above example, CAS verification for channel metadata and metadata items is enabled by setting `majorRevision` and `revision` parameters to positive integers. Upon receiving the update call request, Signaling first verifies the provided major revision number against the latest value in the database. If there's a mismatch, it returns an error; if the values match, Signaling verifies the `revision` number for each metadata item using a similar logic.

    <CalloutContainer type="info">
      <CalloutDescription>
        When using version control, monitor `onStorageEvent` notifications to retrieve updated values for `majorRevision` and `revision` to ensure that the latest revision values are used for subsequent operations.
      </CalloutDescription>
    </CalloutContainer>

    Following are some sample use-cases where version control is useful:

    * In the bidding use-case, if multiple users bid on a product at the same time, the first bidder succeeds, while others receive an error. Users obtain the latest price information to update their bids.

    * In the red envelope grabbing use-case, the red envelope may only be grabbed once. The first user succeeds, while the rest receive an error.

    ### Locks [#locks-5]

    Locks enable users to gain exclusive access to critical resources, resolving contention issues with shared resources. For instance, consider a use-case where only one administrator is allowed in a channel at a time, and only the administrator can manage channel metadata by setting, deleting, and modifying it.

    Compared to CAS, which controls the version of channel metadata, locks offer a higher level of control. They determine whether a user has the authority to call the `setChannelMetadata`, `updateChannelMetadata`, and `removeChannelMetadata` interfaces. Without acquiring the lock, a user cannot perform operations on channel metadata.

    The following code demonstrates using a lock to update channel metadata. The user calling `updateChannelMetadata` must acquire the lock first for the call to succeed.

    ```cpp
    Metadata metadata;
    std::vector<MetadataItem> items;
    items.emplace_back(MetadataItem("Quantity", "40"));
    items.emplace_back(MetadataItem("Announcement", "Welcome to our shop!"));
    items.emplace_back(MetadataItem("T-shirt", "300"));
    metadata.items = items.data();
    metadata.itemCount = items.size();

    MetadataOptions options;
    options.recordTs = true;
    options.recordUserId = true;

    uint64_t requestId;
    std::string lockName = "manage";
    rtm_client->getStorage()->updateChannelMetadata("channel1", RTM_CHANNEL_TYPE_MESSAGE, metadata, options, lockName, requestId);
    ```

    For more information on setting, acquiring, releasing, revoking, and removing locks, see [Locks](/en/api-reference/api-ref/signaling#lock).

    ## Reference [#reference-5]

    This section contains content that completes the information on this page, or points you to documentation that explains other aspects to this product.

    ### API reference [#api-reference-5]

    * [`setChannelMetaData`](/en/api-reference/api-ref/signaling#storagesetchannelpropsag_platform)

    * [`getChannelMetadata`](/en/api-reference/api-ref/signaling#storagegetchannelpropsag_platform)

    * [`removeChannelMetadata`](/en/api-reference/api-ref/signaling#storageremovechannelpropsag_platform)

    * [`updateChannelMetadata`](/en/api-reference/api-ref/signaling#storageupdatechannelpropsag_platform)

    * [Event listeners](/en/api-reference/api-ref/signaling#event-listeners)

    * [Lock](/en/api-reference/api-ref/signaling#lock)

    * [Metadata](/en/api-reference/api-ref/signaling#storagemetadatapropsag_platform)

    
  
      
  
      
  
