Files
mixtape/zero.Raven/Indexes/RavenIndexExtensions.cs
T
2022-12-09 14:40:02 +01:00

12 lines
318 B
C#

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