CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/jupyter/redux/sync.ts
Views: 687
1
export const SYNCDB_OPTIONS = {
2
change_throttle: 50, // our UI/React can handle more rapid updates; plus we want output FAST.
3
patch_interval: 50,
4
primary_keys: ["type", "id"],
5
string_cols: ["input"],
6
cursors: true,
7
persistent: true,
8
};
9
10