Engineering Spec
Abstract
Problem statement - what is the nature of the issue we’re going to try to solve with this specification?
{ | |
"__inputs": [ | |
{ | |
"name": "DS_PROMETHEUS", | |
"label": "prometheus", | |
"description": "", | |
"type": "datasource", | |
"pluginId": "prometheus", | |
"pluginName": "Prometheus" | |
} |
Problem statement - what is the nature of the issue we’re going to try to solve with this specification?
akka.persistence{ | |
journal { | |
plugin = "akka.persistence.journal.sql-server" | |
sql-server { | |
# qualified type name of the SQL Server persistence journal actor | |
class = "Akka.Persistence.SqlServer.Journal.SqlServerJournal, Akka.Persistence.SqlServer" | |
# connection string used for database access | |
connection-string = "str1" |
Directory:
D:\Repositories\olympus\akka.net\src\contrib\cluster\Akka.DistributedData.Tests.MultiNode\bin\Release\net471
Mode LastWriteTime Length Name
d----- 8/6/2021 9:35 PM cs
d----- 8/6/2021 9:35 PM de
pbm cluster tail | foreach{ Write-Output "[$(Get-Date)] $_" } > cluster-tail.txt |
void Main() | |
{ | |
/* | |
Input: [0], Output: [A] (length=1) | |
Input: [1], Output: [B] (length=1) | |
Input: [18446744073709551615], Output: [~~~~~~~~~~P] (length=11) | |
Input: [0], Output: [A] (length=1) | |
Input: [34343], Output: [nYI] (length=3) | |
*/ | |
public static class Program | |
{ | |
public static void Main() | |
{ | |
/* | |
* Experimenting with manual Uri parsing in C# for fun and performance | |
* Akka.NET custom Address parsing | |
* | |
* ex: akka.tcp://CustomerSys@localhost:9110/user/foo/bar/baz | |
* |
/// <summary> | |
/// INTERNAL API. | |
/// | |
/// <see cref="Span{T}"/> polyfills that should be deleted once we drop .NET Standard 2.0 support. | |
/// </summary> | |
internal static class SpanHacks | |
{ | |
public static bool IsNumeric(char x) | |
{ | |
return (x >= '0' && x <= '9'); |
.ConfigureHostConfiguration(configHost => | |
{ | |
configHost.SetBasePath(Directory.GetCurrentDirectory()) | |
.AddJsonFile("appsettings.json") | |
.AddEnvironmentVariables(); | |
}) |