Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-csharp-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ jobs:
- name: Run C# Example Validation
run: |
python scripts/check_csharp_examples.py \
--validator valkey-glide-csharp/scripts/validate_examples.py \
--validator valkey-glide-csharp/dev/scripts/validate_examples.py \
--glide-dll valkey-glide-csharp/sources/Valkey.Glide/bin/Release/net8.0/Valkey.Glide.dll
1 change: 0 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ export default defineConfig({
"migration/java/jedis/jedis-compatibility-layer/instructions",
"migration/java/jedis/jedis-compatibility-layer/supported-features",
"migration/java/jedis/jedis-compatibility-layer/configurations-mapping",
"migration/java/jedis/jedis-compatibility-layer/getting-help",
],
},
{
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/concepts/architecture/async-execution.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Asynchronous Execution
description: How Valkey GLIDE uses connection multiplexing and async patterns for high performance
---

import { Tabs, TabItem } from '@astrojs/starlight/components';
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/concepts/architecture/memory-model.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Memory Model
description: How memory is allocated and managed in Valkey GLIDE's Rust core and language bindings
sidebar:
order: 3
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: The Rust Core
description: The layered Rust architecture that powers Valkey GLIDE across all language clients
sidebar:
order: 1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Multi-Slot Command Handling
description: A reference page in my new Starlight docs site.
description: Learn how GLIDE handles multi-slot commands in Valkey Cluster mode, including command splitting, slot-level atomicity, and a list of supported commands like MSET and DEL.
---

import { Aside } from '@astrojs/starlight/components';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Cluster Awareness
description: How Valkey GLIDE automatically handles slot management, node discovery, and failover
---

Valkey GLIDE was designed to handle the complexities of Valkey (and Redis) clusters automatically.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Command Routing
description: How Valkey GLIDE routes commands to the correct nodes in a cluster
---

import { Aside } from '@astrojs/starlight/components';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Custom Command
description: A reference page in my new Starlight docs site.
description: Learn how to execute commands where the standard client API does not have an interface.
---

import { Aside } from '@astrojs/starlight/components';
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/concepts/client-features/pubsub-model.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Pubsub Model
description: Unified Pub/Sub interface across standalone, cluster, and sharded configurations
---

import { Aside } from '@astrojs/starlight/components';
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/feedback-and-support.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "Feedback and Support"
description: How to get help, report issues, and contribute to Valkey GLIDE
---

import { Aside } from '@astrojs/starlight/components';
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/getting-started/basic-operations.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Basic Operations
description: Learn fundamental Valkey GLIDE operations like setting, getting, and deleting keys
sidebar:
order: 1

Expand Down
1 change: 1 addition & 0 deletions src/content/docs/getting-started/quickstart.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Quick start
description: Install Valkey GLIDE and connect to a Valkey server in minutes
sidebar:
order: 1
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Configure Lazy Connection
description: Defer connection establishment until the first command is executed
---

import { TabItem, Tabs } from '@astrojs/starlight/components';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Limit Inflight Requests
description: Control the maximum number of concurrent requests per connection to prevent OOM errors
---

import { Tabs, TabItem } from '@astrojs/starlight/components';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Command Comparison Chart
description: A reference page in my new Starlight docs site.
description: A comprehensive chart comparing common Valkey commands between go-redis and Valkey GLIDE
sidebar:
:order: 5
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Command Comparison: go-redis → Glide'
description: A reference page in my new Starlight docs site.
description: A comprehensive comparison of common Redis commands and how they are implemented in both go-redis and GLIDE
sidebar:
order: 4
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Connection Management
description: A reference page in my new Starlight docs site.
description: Compare connection management between go-redis and GLIDE
sidebar:
order: 6
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Connection Setup
description: A reference page in my new Starlight docs site.
description: Learn about differences in connection configurations between go-redis and Valkey GLIDE
sidebar:
order: 3
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/go/go-redis/error-handling.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Error Handling
description: A reference page in my new Starlight docs site.
description: Difference in error handling between go-redis and GLIDE

---

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/go/go-redis/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Migrating From go-redis
description: A reference page in my new Starlight docs site.
description: Learn how to migrate from go-redis to Valkey GLIDE
sidebar:
order: 1
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/go/go-redis/installation.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Installation
description: A reference page in my new Starlight docs site.
description: Installing Valkey GLIDE for your Go projects
sidebar:
order: 2
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/go/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Migrating to GLIDE Go
description: A reference page in my new Starlight docs site.
description: Learn how to migrate to Valkey GLIDE from go-redis
---

import { Aside, LinkCard } from '@astrojs/starlight/components';
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/migration/java/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Migrating to Java GLIDE
description: Guides for migrating your Java application to Valkey GLIDE from other clients
---

import { Aside, LinkCard } from '@astrojs/starlight/components';
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/java/jedis/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Jedis Migration
description: A reference page in my new Starlight docs site.
description: Learn how to migrate from Jedis to Valkey GLIDE
sidebar:
order: 1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Configuration Mapping
description: A reference page in my new Starlight docs site.
description: Configuration Mapping between Jedis and GLIDE Jedis Compatibility Layer
sidebar:
order: 4

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Overview
description: A reference page in my new Starlight docs site.
description: Learn how the Valkey GLIDE Jedis Compatibility Layer enables seamless migration from Jedis to Valkey GLIDE with minimal or no code changes.
sidebar:
order: 1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Migration Guide
description: A reference page in my new Starlight docs site.
description: Learn the steps and strategies for migrating to GLIDE Jedis Compatibility Layer
sidebar:
order: 2

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Supported Features
description: A reference page in my new Starlight docs site.
description: A list of supported features in GLIDE Jedis Compatibility Layer
sidebar:
order: 3

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Command Comparison Chart
description: A reference page in my new Starlight docs site.
description: A comprehensive chart comparing common Redis commands between Jedis and Valkey GLIDE
sidebar:
order: 5
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Command Comparison: Jedis → Glide'
description: A reference page in my new Starlight docs site.
description: A comprehensive comparison of common Redis commands and how they are implemented in both Jedis and GLIDE
sidebar:
order: 4
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Connection Setup
description: A reference page in my new Starlight docs site.
description: Learn about differences in connection configurations between Jedis and Valkey GLIDE
sidebar:
order: 3
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Installation
description: A reference page in my new Starlight docs site.
description: Learn how to manually migrate from Jedis to Valkey GLIDE
sidebar:
order: 2
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Jedis Migration Overview
description: A reference page in my new Starlight docs site.
description: A guide to migrate from Jedis to Valkey GLIDE
sidebar:
order: 1
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Command Comparison Chart
description: A reference page in my new Starlight docs site.
description: A comprehensive chart comparing common Redis commands between Lettuce and Valkey GLIDE
sidebar:
order: 5
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Command Comparison: Lettuce → Glide'
description: A reference page in my new Starlight docs site.
description: A comprehensive comparison of common Redis commands and how they are implemented in both lettuce and GLIDE
sidebar:
order: 4
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Connection Setup
description: A reference page in my new Starlight docs site.
description: Differences in Connection setup between Lettuce and GLIDE
sidebar:
order: 3
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/java/lettuce/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Migrating From Lettuce
description: A reference page in my new Starlight docs site.
description: Learn how to migrate from Lettuce to Valkey GLIDE
sidebar:
order: 1
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/java/lettuce/installation.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Installation
description: A reference page in my new Starlight docs site.
description: Learn how to install GLIDE while migrating from Lettuce
sidebar:
order: 2
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Command Comparison Chart
description: A reference page in my new Starlight docs site.
description: A comprehensive chart comparing common Redis commands between Redisson and Valkey GLIDE
sidebar:
order: 5
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Command Comparison: Redisson → Glide'
description: A reference page in my new Starlight docs site.
description: A comprehensive comparison of common Redis commands and how they are implemented in both Redisson and GLIDE
sidebar:
order: 4
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Connection Setup
description: A reference page in my new Starlight docs site.
description: Learn about differences in connection configurations between Redisson and Valkey GLIDE
sidebar:
order: 3
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/java/redisson/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Migrating From Redisson
description: A reference page in my new Starlight docs site.
description: Learn how to migrate from Redisson to Valkey GLIDE
sidebar:
order: 1
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/java/redisson/installation.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Installation
description: A reference page in my new Starlight docs site.
description: Learn how to install GLIDE while migrating from Redisson
sidebar:
order: 2
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Key Differences Summary
description: A reference page in my new Starlight docs site.
description: Learn about the key differences between Redisson and Valkey GLIDE

---

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/nodejs/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Migrating to GLIDE Node.js
description: A reference page in my new Starlight docs site.
description: A guide to migrate from ioredis to Valkey GLIDE
---

import { Aside, LinkCard } from '@astrojs/starlight/components';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Command Comparison Chart
description: A reference page in my new Starlight docs site.
description: A comprehensive chart comparing common Redis commands between ioredis and Valkey GLIDE
sidebar:
order: 5
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Command Comparison: ioredis → Glide'
description: A reference page in my new Starlight docs site.
description: A comprehensive comparison of common Redis commands and how they are implemented in both ioredis and GLIDE
sidebar:
order: 4
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Connection Setup
description: A reference page in my new Starlight docs site.
description: Learn about differences in connection configurations between ioredis and Valkey GLIDE
sidebar:
order: 3
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/migration/nodejs/ioredis/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: From ioredis
description: A reference page in my new Starlight docs site.
description: A comprehensive comparison of how to migrate from Ioredis to Valkey GLIDE
sidebar:
order: 1
---
Expand Down
Loading
Loading