-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
feat(core): add sqlite db for nx #26891
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
☁️ Nx Cloud ReportCI is running/has finished running commands for commit f05e681. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 4 targets
Sent with 💌 from NxCloud. |
ac8577f
to
2baa5df
Compare
🐳 We have a release for that!This PR has a release associated with it. You can try it out using this command: npx [email protected] my-workspace Or just copy this version and use it in your own command: 0.0.0-pr-26891-2baa5df
To request a new release for this pull request, mention someone from the Nx team or the |
Failed to publish a PR release of this pull request, triggered by @FrozenPandaz. |
🐳 We have a release for that!This PR has a release associated with it. You can try it out using this command: npx [email protected] my-workspace Or just copy this version and use it in your own command: 0.0.0-pr-26891-a1d375a
To request a new release for this pull request, mention someone from the Nx team or the |
4022f1f
to
1cb1598
Compare
🐳 We have a release for that!This PR has a release associated with it. You can try it out using this command: npx [email protected] my-workspace Or just copy this version and use it in your own command: 0.0.0-pr-26891-1cb1598
To request a new release for this pull request, mention someone from the Nx team or the |
048ee5a
to
b4d6144
Compare
🐳 We have a release for that!This PR has a release associated with it. You can try it out using this command: npx [email protected] my-workspace Or just copy this version and use it in your own command: 0.0.0-pr-26891-048ee5a
To request a new release for this pull request, mention someone from the Nx team or the |
Failed to publish a PR release of this pull request, triggered by @FrozenPandaz. |
dfff093
to
a7e4733
Compare
🐳 We have a release for that!This PR has a release associated with it. You can try it out using this command: npx [email protected] my-workspace Or just copy this version and use it in your own command: 0.0.0-pr-26891-a7e4733
To request a new release for this pull request, mention someone from the Nx team or the |
e294549
to
0a70597
Compare
🐳 We have a release for that!This PR has a release associated with it. You can try it out using this command: npx [email protected] my-workspace Or just copy this version and use it in your own command: 0.0.0-pr-26891-0a70597
To request a new release for this pull request, mention someone from the Nx team or the |
946eab8
to
3bf67cc
Compare
🐳 We have a release for that!This PR has a release associated with it. You can try it out using this command: npx [email protected] my-workspace Or just copy this version and use it in your own command: 0.0.0-pr-26891-cf56f7b
To request a new release for this pull request, mention someone from the Nx team or the |
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
Nx has some persistent storage managed as separate files on disk. For example, the local cache queries the file system for existing directories.
Expected Behavior
Nx has a new more performant persistent storage via SQLite database. The db is used for the following purposes now:
The cache in particular has the following benefits:
This is opt-in for now, under
NX_DB_CACHE=true
Related Issue(s)
Fixes #