Skip to main content
Jeden Skill in Manus ausführen
mit einem Klick
GitHub-Repository

skills

skills enthält 32 gesammelte Skills von FalkorDB, mit Repository-Berufsabdeckung und Skill-Detailseiten auf SkillsMP.

gesammelte Skills
32
Stars
22
aktualisiert
2026-05-20
Forks
2
Berufsabdeckung
3 Berufskategorien · 100% klassifiziert
Repository-Explorer

Skills in diesem Repository

falkordb-skills
Datenbankarchitekten

Practical FalkorDB guidance — Cypher queries, UDF management, Docker operations, and data ingestion. Use when writing or reviewing FalkorDB queries, setting up FalkorDB containers, working with user-defined functions, or migrating data from other sources.

2026-05-20
migrate-neo4j-to-falkordb
Datenbankarchitekten

Extract data from Neo4j to CSV and load it into FalkorDB

2026-05-17
migrate-neptune-to-falkordb
Datenbankarchitekten

Convert AWS Neptune Export CSVs and load them into FalkorDB

2026-05-17
migrate-sql-to-falkordb
Datenbankarchitekten

Migrate and continuously sync data from SQL systems into FalkorDB

2026-05-17
use-bulk-loader-from-csv
Datenbankarchitekten

Build FalkorDB databases from CSV inputs using the falkordb-bulk-loader utility

2026-05-17
apply-falkordb-cypher-limitations-correctly
Datenbankarchitekten

Account for FalkorDB Cypher limitations like non-indexed not-equal filters when designing queries

2026-02-04
create-and-query-full-text-indexes
Datenbankarchitekten

Use RediSearch-backed full-text indexes for text search with wildcard and fuzzy matching

2026-02-04
create-and-query-vector-indexes
Datenbankarchitekten

Use HNSW vector indexes for Approximate Nearest Neighbor (ANN) search with embeddings

2026-02-04
create-nodes-and-relationships
Datenbankarchitekten

Create labeled nodes and connect them with properties using CREATE in FalkorDB

2026-02-04
create-range-indexes-for-exactrange-lookups
Datenbankarchitekten

Create indexes to accelerate equality and range predicates on node properties in FalkorDB

2026-02-04
inspect-graphs-and-memory-usage
Datenbankarchitekten

Use GRAPH.LIST, GRAPH.INFO, and GRAPH.MEMORY USAGE to monitor graphs and resources

2026-02-04
inspect-query-plans-before-execution
Datenbankarchitekten

Use GRAPH.EXPLAIN to view query execution plans and validate index usage without running

2026-02-04
manage-constraints-with-awareness-of-async-creation
Datenbankarchitekten

Create and check status of constraints on node properties in FalkorDB with db.constraints()

2026-02-04
match-patterns-and-return-projections
Datenbankarchitekten

Match nodes by label and properties using MATCH, then return specific fields from query results

2026-02-04
profile-query-runtime-behavior
Datenbankarchitekten

Use GRAPH.PROFILE to see per-operator runtime statistics and record counts for queries

2026-02-04
run-safe-read-only-queries
Datenbankarchitekten

Use GRAPH.RO_QUERY for read-only operations that reject write attempts in FalkorDB

2026-02-04
track-slow-queries
Datenbankarchitekten

Use GRAPH.SLOWLOG to identify and monitor slow queries and performance bottlenecks

2026-02-04
update-and-remove-properties-safely
Datenbankarchitekten

Update node properties using SET and remove properties by setting them to NULL in FalkorDB

2026-02-04
use-merge-to-avoid-duplicate-nodes
Datenbankarchitekten

Use MERGE for idempotent upserts with ON CREATE and ON MATCH clauses to avoid duplicates

2026-02-04
use-parameterized-queries-for-cache-reuse
Datenbankarchitekten

Use CYPHER parameters in queries to enable query plan caching and improve performance

2026-02-04
verify-index-usage
Datenbankarchitekten

Confirm queries are using indexes through execution plan analysis with GRAPH.EXPLAIN

2026-02-04
run-the-browser-separately-against-a-server
Netzwerk- und Computersystemadministratoren

Run FalkorDB browser and server as separate containers connected via FALKORDB_URL

2026-02-04
run-server-only-for-production-style-usage
Netzwerk- und Computersystemadministratoren

Run FalkorDB server-only container without browser UI for lean production deployments

2026-02-04
run-falkordb-with-browser-for-local-development
Netzwerk- und Computersystemadministratoren

Run FalkorDB container with both database and browser UI for local development environments

2026-02-04
set-authentication-using-redis-args
Netzwerk- und Computersystemadministratoren

Configure Redis authentication password using REDIS_ARGS environment variable

2026-02-04
set-module-config-using-falkordb-args
Netzwerk- und Computersystemadministratoren

Configure FalkorDB module settings like thread count and timeout with FALKORDB_ARGS

2026-02-04
use-docker-compose-for-repeatable-local-stacks
Netzwerk- und Computersystemadministratoren

Define FalkorDB configuration with ports and environment variables in docker-compose.yml

2026-02-04
call-a-udf-from-cypher
Datenbankarchitekten

Invoke registered UDFs within Cypher queries using LibraryName.FunctionName() syntax

2026-02-04
delete-or-flush-udf-libraries
Datenbankarchitekten

Remove specific UDF libraries with GRAPH.UDF DELETE or clear all with GRAPH.UDF FLUSH

2026-02-04
list-udf-libraries-with-code
Datenbankarchitekten

View all loaded UDF libraries and their source code using GRAPH.UDF LIST WITHCODE

2026-02-04
load-a-javascript-udf-library
Softwareentwickler

Register User-Defined Functions written in JavaScript with FalkorDB using falkor.register()

2026-02-04
respect-udf-limitations
Softwareentwickler

Design UDFs as pure functions that transform data without mutating the graph in FalkorDB

2026-02-04