BenchmarkDotNet=v0.10.11, OS=Windows 10 Redstone 3 [1709, Fall Creators Update] (10.0.16299.125)
Processor=Intel Core i7-6820HQ CPU 2.70GHz (Skylake), ProcessorCount=8
Frequency=2648436 Hz, Resolution=377.5813 ns, Timer=TSC
[Host] : .NET Framework 4.7 (CLR 4.0.30319.42000), 64bit RyuJIT-v4.7.2600.0
Job-ZRUPTL : .NET Framework 4.7 (CLR 4.0.30319.42000), 64bit RyuJIT-v4.7.2600.0
InvocationCount=4 LaunchCount=1 TargetCount=3
UnrollFactor=4 WarmupCount=3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// reference Npgsql NuGet package v3 in project | |
using Npgsql; | |
using NpgsqlTypes; | |
// register provider with name Npgsql-30, Quartz V3 has this OOTB | |
// could also just do a assembly binding redirect | |
DbProvider.RegisterDbMetadata("Npgsql-30", new DbMetadata | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Raven.Client.Documents.Linq; | |
using Xunit; | |
namespace FastTests.Client.Queries | |
{ | |
public class ProjectionParameters : RavenTestBase | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.Linq; | |
using Raven.Client.Documents.Linq; | |
using Raven.Client.Documents.Session; | |
using Xunit; | |
namespace FastTests.Client.Queries | |
{ | |
public class ProjectionParameters : RavenTestBase | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RavenDB 3.5.4 / Windows Service | |
LoadFullDatasets 47.535 s NA 1319500.0000 242000.0000 4000.0000 7631.44 MB | |
LoadDocumentsCollection 29.600 s NA 576000.0000 133000.0000 3000.0000 3457.87 MB | |
LoadDocumentsCollectionFiltered 4.608 s NA 7000.0000 2000.0000 43.42 MB | |
StoreResults 8.578 s NA 257500.0000 60500.0000 3500.0000 1028.7 MB | |
RavenDB 4.0 - RC2 / Dockerized Linux | |
LoadFullDatasets 11.38 s NA 1097500.0000 114000.0000 6022.7 MB |
BenchmarkDotNet=v0.10.11, OS=Windows 10 Redstone 3 [1709, Fall Creators Update] (10.0.16299.192)
Processor=Intel Core i7-6820HQ CPU 2.70GHz (Skylake), ProcessorCount=8
Frequency=2648437 Hz, Resolution=377.5812 ns, Timer=TSC
[Host] : .NET Framework 4.7 (CLR 4.0.30319.42000), 64bit RyuJIT-v4.7.2600.0
Job-ZRUPTL : .NET Framework 4.7 (CLR 4.0.30319.42000), 64bit RyuJIT-v4.7.2600.0
InvocationCount=4 LaunchCount=1 TargetCount=3
UnrollFactor=4 WarmupCount=3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.IO; | |
using System.Linq; | |
namespace ConsoleApp1 | |
{ | |
class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MruPropertyCacheBenchmark | |
{ | |
string[] stringArray; | |
private Dictionary<string, IPropertyDescriptor> _basicDictionary; | |
private Dictionary<string, IPropertyDescriptor> _ordinalDictionary; | |
private MruPropertyCache2<IPropertyDescriptor> _mruPropertyCache; | |
private StringMap<IPropertyDescriptor> _stringMap; | |
private MruPropertyCache<IPropertyDescriptor> _mruPropertyCacheLinked; |
Method | FileName | Mean | Error | StdDev | Median | Gen 0 | Gen 1 | Gen 2 | Allocated |
---|---|---|---|---|---|---|---|---|---|
Run | dromaeo-3d-cube | 114.54 ms | 0.2585 ms | 0.3869 ms | 114.39 ms | 1375.0000 | 250.0000 | - | 7318.63 KB |
Run | dromaeo-core-eval | 27.01 ms | 0.0214 ms | 0.0314 ms | 27.03 ms | 62.5000 | - | - | 299.8 KB |
Run | dromaeo-object-array | 277.62 ms | 0.8433 ms | 1.2622 ms | 277.48 ms | 39500.0000 | 2000.0000 | 1000.0000 | 166027.98 KB |
Run | dromaeo-object-regexp | 1,161.51 ms | 3.9209 ms | 5.8687 ms | 1,161.56 ms | 57500.0000 | 34437.5000 | 21687.5000 | **43482 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# based on https://raw.githubusercontent.com/kvaes/docker-rancher-scripts/master/agent-with-local-ip/rancher.sh | |
# Variable Check | |
echo "# Checking Variables" | |
if [ -z "$1" ]; | |
then | |
echo "!!! no hosturl was supplied" | |
exit 2 |
OlderNewer