Giter Club home page Giter Club logo

a-sync-redisclient's Introduction

Hi there ๐Ÿ‘‹

Thomhurst's GitHub stats

a-sync-redisclient's People

Contributors

asos-tomlonghurst avatar codacy-badger avatar thomhurst avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

a-sync-redisclient's Issues

Avoid temporary allocations

The message parsing is all string based. While this is convenient it allocates strings to parse the redis command which is then turned into the resulting object. It would be better to parse the ReadOnlySequence directly in each of the result processors.

SocketPipe assigns read pipe and write pipe after kicking off the thread

This is a race condition that may result in a null ref (it happened to me). The fix is simple though.

if (read)
{
receivePipeOptions.ReaderScheduler.Schedule(
async obj => await ((SocketPipe) obj).CopyFromSocketToReadPipe().ConfigureAwait(false), this);
_readPipe = new Pipe(receivePipeOptions);
}
if (write)
{
sendPipeOptions.WriterScheduler.Schedule(
async obj => await ((SocketPipe) obj).CopyFromWritePipeToSocket().ConfigureAwait(false), this);
_writePipe = new Pipe(sendPipeOptions);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.