12 lines
324 B
C#
12 lines
324 B
C#
using Raven.Client.Documents.Indexes;
|
|
|
|
namespace zero.Persistence;
|
|
|
|
public static class RavenIndexExtensions
|
|
{
|
|
public static void Throttle(this AbstractCommonApiForIndexes index, TimeSpan delay)
|
|
{
|
|
index.Configuration[RavenConstants.Indexing.ThrottlingTimeIntervalInMs] = delay.TotalMilliseconds.ToString();
|
|
}
|
|
}
|