SqlScaleoutConfiguration.TableCount Property

.NET Framework 4.5

Gets or sets the number of tables to store messages in. Using more tables reduces lock contention and may increase throughput. This must be consistent between all nodes in the web farm. Defaults to 1.

Namespace:  Microsoft.AspNet.SignalR
Assembly:  Microsoft.AspNet.SignalR.SqlServer (in Microsoft.AspNet.SignalR.SqlServer.dll)

Syntax

'Declaration
Public Property TableCount As Integer 
    Get 
    Set
'Usage
Dim instance As SqlScaleoutConfiguration 
Dim value As Integer 

value = instance.TableCount

instance.TableCount = value
public int TableCount { get; set; }
public:
property int TableCount {
    int get ();
    void set (int value);
}
member TableCount : int with get, set
function get TableCount () : int 
function set TableCount (value : int)

Property Value

Type: System.Int32
The number of tables to store messages in.

See Also

Reference

SqlScaleoutConfiguration Class

Microsoft.AspNet.SignalR Namespace