-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redis conf parse failed #207
Labels
Comments
fixed with parser.Configuration.KeyValueAssigmentChar = ' '; but the save 900 1
save 300 10
save 60 10000 how to parse? the |
and unable to use System.Text.Json to serialize
|
serialize problem fixed with var dict = new Dictionary<string, object>();
foreach (var i in data.Global)
{
dict.Add(i.KeyName, i.Value);
} hope there is a ToJson Method, or |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
turns:
the raw.String is below:
The text was updated successfully, but these errors were encountered: