Open
Conversation
Co-authored-by: MarianaReisAlcantara <mariana.alcantara@azion.com>
Co-authored-by: MarianaReisAlcantara <mariana.alcantara@azion.com>
Co-authored-by: MarianaReisAlcantara <mariana.alcantara@azion.com>
Co-authored-by: MarianaReisAlcantara <mariana.alcantara@azion.com>
Co-authored-by: MarianaReisAlcantara <mariana.alcantara@azion.com>
Co-authored-by: MarianaReisAlcantara <mariana.alcantara@azion.com>
Co-authored-by: MarianaReisAlcantara <mariana.alcantara@azion.com>
…PI reference Add detailed usage examples for storing, retrieving, and deleting data in KV Store. Include examples for working with different data types (text, JSON, binary, streams), metadata handling, multiple key operations, and namespace management. Update guide structure with clearer sections and add API reference documentation for namespace and key management operations. Fix meta tags and namespace references.
…delete operations Add comprehensive API reference pages for KV Store operations including methods for reading key-value pairs (get, getWithMetadata), writing data (put), and deleting entries. Include detailed parameter descriptions, response types, usage examples, and guidance for handling different data types (text, JSON, binary, streams), metadata, multiple keys, and namespace management. Document eventual consistency behavior
Update namespace limits from varying values (10/50/200) to a unified limit of 1000 namespaces for all service plans (Developer, Business, Enterprise, and Mission Critical) in both English and Portuguese documentation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Description
Title
docs: Add comprehensive KV Store documentation with examples, API reference, and Redis compatibility guide
Summary
This PR introduces complete documentation for the KV Store product, including reference documentation, practical guides, and API reference in both English and Portuguese. The documentation is inspired by Cloudflare's KV documentation structure for familiarity and ease of use.
Changes
New Files (16)
Reference Documentation (EN/PT-BR)
Guides (EN/PT-BR)
API Reference (EN)
API Reference (PT-BR)
Content Added
Reference Documentation
Azion.KVclass reference with all methodsGuide Documentation
Redis Compatibility Guide (NEW)
azionSDK packagecreateClient()hSet,hGetAll,hVals)API Reference (Cloudflare-inspired structure)
put()method with parameters, options, examples, guidance on expiration and metadataget()andgetWithMetadata()methods with type options, cacheTtl, single/multiple key retrievaldelete()method with namespace deletionCode Examples
20+ working JavaScript examples covering:
kv.put()with strings, objects, ArrayBuffer, and streamskv.get()with different return types (text, json, arrayBuffer, stream)kv.getWithMetadata()for value + metadata retrievalkv.delete()for key removalnew Azion.KV(),Azion.KV.open())Azion.KV.delete())createClient(),hSet,hGetAll,hVals)Terminology Updates
Related