persistence
Here are 526 public repositories matching this topic...
-
Updated
Oct 20, 2020 - Rust
-
Updated
Oct 19, 2020 - PHP
-
Updated
Oct 18, 2020 - JavaScript
-
Updated
Jun 1, 2020 - C++
-
Updated
Nov 12, 2019 - Objective-C
-
Updated
Jul 12, 2019 - Python
-
Updated
Nov 3, 2018 - Python
Current implementation of proclist plugin uses win32_ps_list_procs() php function on Windows host.
Therefore, linux implementation is a simple system("ps -a"), which is OPSEC unsafe, an would probably trigger EDR alerts.
A better implementation should avoid relying on system command execution.
-
Updated
Feb 5, 2020 - PHP
-
Updated
Oct 21, 2020 - Dart
-
Updated
Oct 1, 2020 - Python
-
Updated
Sep 29, 2020 - JavaScript
-
Updated
May 16, 2020 - TypeScript
-
Updated
Oct 15, 2020 - Java
-
Updated
Apr 3, 2020 - Java
-
Updated
Sep 10, 2020 - Kotlin
-
Updated
Aug 6, 2020 - Go
-
Updated
Oct 20, 2020 - Ruby
-
Updated
Aug 2, 2020 - Java
-
Updated
Jan 23, 2019 - Jupyter Notebook
-
Updated
Jan 26, 2017 - Go
-
Updated
Oct 20, 2020 - HTML
-
Updated
Oct 21, 2020 - Go
-
Updated
Oct 18, 2020 - Swift
-
Updated
Oct 16, 2019 - Swift
Improve this page
Add a description, image, and links to the persistence topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the persistence topic, visit your repo's landing page and select "manage topics."
This is to fix: Nozbe/WatermelonDB#186
Right now, deleting records is not very efficient in WatermelonDB.
Say you have models like this: Blog has_many Post has_many Comment. If you want to delete a blog post, you also have to delete all its posts, and all their comments. This happens one-by-one currently. What we need is the ability to efficiently (and atomically if