nfx icon indicating copy to clipboard operation
nfx copied to clipboard

C# Server UNISTACK framework [MOVED]

Results 17 nfx issues
Sort by recently updated
recently updated
newest added

``` static readonly SlimSerializer serializer = new SlimSerializer(); static byte[] Serialize(object obj) { using (var ms = new MemoryStream()) { serializer.Serialize(ms, obj); return ms.ToArray(); } } static object Deserialize(byte[] data)...

The Mono 5 implementation is 3x times slower than Mono 3, looks like they have switch expression tree to interpretation instead of IL generation. Similar issue effects .NET Core. We...

bug
enhancement
question

Need to not require Message instance at all (it is an extra allocation). Is it possible to bypass CallSlot for sync-only bindings? Do we need to constrain binding with Contact?

enhancement
FUTURE

Optimize caching table by providing flag to enable Bloom filter. This can significantly improve performance by filtering out one-time hits that are rarely used. Need to design multi hashing strategy...

FUTURE

Please, extend syntax of JS Compiler to make insertions of source laconf into js code directly, like: ``` var dlg = new WAVE.GUI.Dialog({ header: "Some Infromation", body: /*** div {...