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