We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Right now, SpfState is in-memory only. It would be useful to persist state between program runs.
🔹 Improvement Suggestion:
Modify SpfState:
public void SaveState() { File.WriteAllText("spf_state.json", JsonSerializer.Serialize(_state)); } public void LoadState() { if (File.Exists("spf_state.json")) _state = JsonSerializer.Deserialize<Dictionary<string, object>>(File.ReadAllText("spf_state.json")); }
✅ Advantage: This allows session persistence, making SPF more powerful.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now, SpfState is in-memory only. It would be useful to persist state between program runs.
🔹 Improvement Suggestion:
Modify SpfState:
✅ Advantage: This allows session persistence, making SPF more powerful.
The text was updated successfully, but these errors were encountered: