Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

skills

يحتوي skills على 32 من skills المجمعة من FalkorDB، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
32
Stars
22
محدث
2026-05-20
Forks
2
التغطية المهنية
3 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

falkordb-skills
مصممو قواعد البيانات

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
مصممو قواعد البيانات

Extract data from Neo4j to CSV and load it into FalkorDB

2026-05-17
migrate-neptune-to-falkordb
مصممو قواعد البيانات

Convert AWS Neptune Export CSVs and load them into FalkorDB

2026-05-17
migrate-sql-to-falkordb
مصممو قواعد البيانات

Migrate and continuously sync data from SQL systems into FalkorDB

2026-05-17
use-bulk-loader-from-csv
مصممو قواعد البيانات

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

2026-05-17
apply-falkordb-cypher-limitations-correctly
مصممو قواعد البيانات

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

2026-02-04
create-and-query-full-text-indexes
مصممو قواعد البيانات

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

2026-02-04
create-and-query-vector-indexes
مصممو قواعد البيانات

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

2026-02-04
create-nodes-and-relationships
مصممو قواعد البيانات

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

2026-02-04
create-range-indexes-for-exactrange-lookups
مصممو قواعد البيانات

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

2026-02-04
inspect-graphs-and-memory-usage
مصممو قواعد البيانات

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

2026-02-04
inspect-query-plans-before-execution
مصممو قواعد البيانات

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

2026-02-04
manage-constraints-with-awareness-of-async-creation
مصممو قواعد البيانات

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

2026-02-04
match-patterns-and-return-projections
مصممو قواعد البيانات

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

2026-02-04
profile-query-runtime-behavior
مصممو قواعد البيانات

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

2026-02-04
run-safe-read-only-queries
مصممو قواعد البيانات

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

2026-02-04
track-slow-queries
مصممو قواعد البيانات

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

2026-02-04
update-and-remove-properties-safely
مصممو قواعد البيانات

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

2026-02-04
use-merge-to-avoid-duplicate-nodes
مصممو قواعد البيانات

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

2026-02-04
use-parameterized-queries-for-cache-reuse
مصممو قواعد البيانات

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

2026-02-04
verify-index-usage
مصممو قواعد البيانات

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

2026-02-04
run-the-browser-separately-against-a-server
مديرو الشبكات وأنظمة الحاسوب

Run FalkorDB browser and server as separate containers connected via FALKORDB_URL

2026-02-04
run-server-only-for-production-style-usage
مديرو الشبكات وأنظمة الحاسوب

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

2026-02-04
run-falkordb-with-browser-for-local-development
مديرو الشبكات وأنظمة الحاسوب

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

2026-02-04
set-authentication-using-redis-args
مديرو الشبكات وأنظمة الحاسوب

Configure Redis authentication password using REDIS_ARGS environment variable

2026-02-04
set-module-config-using-falkordb-args
مديرو الشبكات وأنظمة الحاسوب

Configure FalkorDB module settings like thread count and timeout with FALKORDB_ARGS

2026-02-04
use-docker-compose-for-repeatable-local-stacks
مديرو الشبكات وأنظمة الحاسوب

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

2026-02-04
call-a-udf-from-cypher
مصممو قواعد البيانات

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

2026-02-04
delete-or-flush-udf-libraries
مصممو قواعد البيانات

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

2026-02-04
list-udf-libraries-with-code
مصممو قواعد البيانات

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

2026-02-04
load-a-javascript-udf-library
مطوّرو البرمجيات

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

2026-02-04
respect-udf-limitations
مطوّرو البرمجيات

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

2026-02-04