StoreFront

Manage the subscriptions database

When you create a store, StoreFront creates a Microsoft Extensible Storage Engine (ESENT) database locally on the server to hold favorites (also known as subscription) data. In StoreFront server group environments, each server maintains its own copy of the database. Any changes to favorites are propagated to other servers to ensure users see the same favorites regardless of which server they connect to.

Alternatively, you can store favorites in a SQL Server database. For more information, see Store subscription data using Microsoft SQL Server.

To view whether a store is using a local ESENT database or a SQL server database, use the PowerShell script:

$store=Get-STFStoreService -VirtualPath '/Citrix/Store'
Get-STFStoreSubscriptionsDatabase -StoreService $store
<!--NeedCopy-->

Managing favorites data

When using an ESENT database, you can use PowerShell to manage the favorites data. For more information, see Manage favorites data. When use a SQL server database, you can use SQL to manage the records.

Syncing favorites between server groups

Subscriptions automatically synchronize between servers in a server group. If you have multiple server groups, then you can configure Citrix Files to periodically synchronize subscriptions between server groups. For more information, see Subscriptions synchronization.

Manage the subscriptions database