#
persistence
Here are 557 public repositories matching this topic...
the champagne of beta embedded databases
rust
tree
orm
database
high-performance
persistence
fuzzing
formal-methods
concurrent
lock-free
log-structured
kv
b-tree
sled
b-plus-tree
b-link-tree
bw-tree
incredibly-spicy
embedded-kv
crash-testing
-
Updated
Feb 12, 2021 - Rust
The Doctrine Persistence project is a library that provides common abstractions for object mapper persistence.
-
Updated
Feb 13, 2021 - PHP
JavaScript tree view / tree grid plugin with support for keyboard, inline editing, filtering, checkboxes, drag'n'drop, and lazy loading
-
Updated
Feb 9, 2021 - JavaScript
A redis protocol compatible nosql, it support multiple storage engines as backend like Google's LevelDB, Facebook's RocksDB, OpenLDAP's LMDB, PerconaFT, WiredTiger, ForestDB.
redis
rocksdb
c-plus-plus
database
lua
server
nosql
key-value
leveldb
lmdb
persistence
percona
nosql-database
wiredtiger
forestdb
-
Updated
Jun 1, 2020 - C++
iOS UUID / Universally Unique Identifiers library as alternative to UDID and identifierForVendor. 📱
ios
device
uuid
objective-c
persistence
keychain
vendor
session
pod
installation
icloud
udid
unique-identifier
uuids
identifierforvendor
device-uuid
uickeychainstore
-
Updated
Oct 29, 2020 - Objective-C
Undetectable Windows Payload Generation
python
windows
powershell
persistence
uac
meter
antivirus
netsec
bypass
payloads
kali
metasploit
msfconsole
undetectable
-
Updated
Jul 12, 2019 - Python
nil0x42
commented
Oct 3, 2020
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.
A framework that create an advanced stealthy dropper that bypass most AVs and have a lot of tricks
backdoor
powershell
persistence
malware
phishing
hacking
smile
scam
spoofing
pentest
kali-linux
avs
hacking-tool
anti-forensics
windows-hacking
execution-policy-bypass
social-engineering
uac-bypass
kill-antivirus
runas
dr0p1t
-
Updated
Nov 3, 2018 - Python
Moor is an easy to use, reactive, typesafe persistence library for Dart & Flutter
-
Updated
Feb 12, 2021 - Dart
Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.
-
Updated
Feb 3, 2021 - Python
A multithreaded application server for PHP, written in PHP.
-
Updated
Feb 5, 2020 - PHP
A custom React Hook that provides a multi-instance, multi-tab/browser shared and persistent state.
-
Updated
Jan 5, 2021 - JavaScript
Universal database layer for the client, server & mobile devices. It's like Lego for databases.
nodejs
json
typescript
csv
sql
orm
database
isomorphic
nosql
sqlite
leveldb
history
persistence
localstorage
trie
indexeddb
rdbms
taffydb
orm-library
-
Updated
May 16, 2020 - TypeScript
Collection of best practices for Java persistence performance in Spring Boot applications
mysql
java
sql
spring-boot
spring-data
jdbc
jpa
functions
persistence
postgresql
hibernate
connection-pool
springboot
dto
database-connection
sql-statement
batch-insert
hibernate-jpa
performance-penalty
spring-projections
-
Updated
Dec 30, 2020 - Java
java
screenshot
tool
persistence
hacking
java-8
spyware
keylogger
hacking-tool
kali
webcam-capture
spyware-generator
-
Updated
Apr 3, 2020 - Java
-
Updated
Feb 5, 2021 - Kotlin
WADComs is an interactive cheat sheet, containing a curated list of Unix/Windows offensive tools and their respective commands.
windows
persistence
commands
cheatsheet
enumeration
exploitation
privilege-escalation
blueteam
redteam
wadcoms
-
Updated
Dec 31, 2020 - HTML
moredure
opened
Aug 25, 2020
Ruby persistence framework with entities and repositories
ruby
hanami
database
repository
persistence
entity-framework
entity
repository-pattern
persistence-layer
persistence-framework
-
Updated
Feb 2, 2021 - Ruby
ToRat is a Remote Administation tool written in Go using Tor as a transport mechanism and RPC for communication
windows
linux
golang
reverse-shell
cross-platform
persistence
tor
rpc
transport
rat
keylogger
post-exploitation
payload
privilege-escalation
remote-admin-tool
uac-bypass
command-and-control
shell-reverse
reverse-shells
uacbypass
-
Updated
Feb 13, 2021 - Go
android
kotlin
preferences
sharedpreferences
storage
dependency-injection
persistence
annotations
kotlin-android
android-library
annotation-processor
annotation-processing
shared-preferences
sharedpreferences-manager
preferenceroom
skydoves
-
Updated
Feb 5, 2021 - Java
Performance comparison of Android ORM Frameworks
-
Updated
Jan 23, 2019 - Jupyter Notebook
EGESPLOIT is a golang library for malware development
-
Updated
Jan 26, 2017 - Go
Job Scheduler for IOS with Concurrent run, failure/retry, persistence, repeat, delay and more
swift
queue
job
scheduler
delay
job-scheduler
persistence
constraints
persist
operation
operationqueue
-
Updated
Dec 30, 2020 - Swift
Language-Natural Persistence Layer for Java
java
serialization
database
key-value
raft
persistence
orm-framework
persistence-layer
schema-management
persistence-programming
-
Updated
Feb 5, 2021 - HTML
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