Files
2026-05-05 11:34:32 +02:00

12 lines
321 B
C#

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