persistence
Here are 541 public repositories matching this topic...
-
Updated
Nov 28, 2020 - Rust
-
Updated
Nov 29, 2020 - PHP
-
Updated
Nov 29, 2020 - JavaScript
-
Updated
Jun 1, 2020 - C++
-
Updated
Oct 29, 2020 - 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
Nov 30, 2020 - Dart
-
Updated
Feb 5, 2020 - PHP
-
Updated
Nov 24, 2020 - JavaScript
-
Updated
Nov 9, 2020 - Python
-
Updated
May 16, 2020 - TypeScript
-
Updated
Nov 4, 2020 - Java
-
Updated
Apr 3, 2020 - Java
-
Updated
Nov 9, 2020 - Kotlin
-
Updated
Nov 26, 2020 - Ruby
-
Updated
Oct 28, 2020 - Java
-
Updated
Jan 23, 2019 - Jupyter Notebook
-
Updated
Nov 30, 2020 - Go
-
Updated
Jan 26, 2017 - Go
-
Updated
Nov 12, 2020 - HTML
-
Updated
Nov 12, 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