vrecluse

Results 20 issues of vrecluse

Is optimization like this possible? ```c++ auto& column = getSmallestSizeColumn(); for (auto& component in column) { auto entity = getEntity(component) if (entity.Contains()) { f(entity, cs...); } } ``` When finding...

**Describe the bug** I configured datadog agent with dotnet runtime metrics integration, and launch my app with app settings: ```json { "$schema": "http://json.schemastore.org/launchsettings.json", "profiles": { "Sazabi.World.Silo": { "commandName": "Project", "environmentVariables":...

status:needs-investigation
area:runtime-metrics

Hi, I'm planing to split the Http gateway code from orleans silo. Which the gateway server is not a silo, and should only depends on grains interfaces, orleans client, and...

``` System.ArgumentOutOfRangeException: Length cannot be less than zero. (Parameter 'length') at System.String.Substring(Int32 startIndex, Int32 length) at Orleans.TelemetryConsumers.Prometheus.PrometheusTelemetryConsumer.GetCategoryFromMetricName(String name) at Orleans.TelemetryConsumers.Prometheus.PrometheusTelemetryConsumer.TrackMetric(String name, Double value, IDictionary`2 properties) at Orleans.Runtime.TelemetryManager.TrackMetric(String name, Double value,...

Needs: triage :mag:

Only grpc server sample found in this repository. Is the official grpc c++ library required?

### Xmake 版本 xmake v2.7.9+20230523 ### 操作系统版本和架构 Linux 5.15.90.1-microsoft-standard-WSL2 #1 SMP Fri Jan 27 02:56:13 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux ### 描述问题 launch.json 配置如下 ``` { "name": "XMake Debug",...

bug

eg. call rpc with timeout using stop_when, and retry: ```cpp int retryCount = 5; while (retryCount > 0) { -- retryCount; auto result = co_await done_as_optional(stop_when(fakeRpc(), s.schedule_after(2s))); if (result) {...

![image](https://user-images.githubusercontent.com/4232511/142350826-19dd95f8-d825-4250-8e44-c5a250f13a8a.png) It seems readonly property value not supported. Or it's always copied when using property?

I encountered this problem in my project. Wrote a simple project that reproduced it: ```csharp var builder = WebApplication.CreateBuilder(); builder.Host.UseOrleans(siloBuilder => { siloBuilder.UseLocalhostClustering(); siloBuilder.AddMemoryGrainStorage(ProviderConstants.DEFAULT_STORAGE_PROVIDER_NAME); siloBuilder.AddMemoryStreams("Notify"); siloBuilder.AddMemoryGrainStorage("PubSubStore"); }); builder.Services.AddHostedService(); // subscribe...

question

#### Is your feature request related to a problem? Please describe. IMessagePackFormatter provides Serialize() / Deserialize() like this: ```csharp public interface IMessagePackFormatter : IMessagePackFormatter { /// /// Serializes a value....