<?php
declare(strict_types=1);
return [
[
'name' => 'NoSQL database',
'description' => 'A non-relational database for flexible data models, such as key-value, document, or wide-column stores.',
'category' => 'database',
'icon' => null,
],
[
'name' => 'Graph database',
'description' => 'A database that uses graph structures with nodes and edges to represent and store data, ideal for relationship-heavy data.',
'category' => 'database',
'icon' => null,
],
[
'name' => 'Columnar database',
'description' => 'A database that stores data in columns rather than rows, optimized for fast query performance in analytical applications.',
'category' => 'database',
'icon' => null,
],
[
'name' => 'Relational database',
'description' => 'A database based on the relational model, storing data in tables with predefined schemas (e.g., MySQL, PostgreSQL).',
'category' => 'database',
'icon' => null,
],
[
'name' => 'Document database',
'description' => 'A type of NoSQL database designed for storing and querying data as JSON-like documents.',
'category' => 'database',
'icon' => null,
],
[
'name' => 'Object-oriented database',
'description' => 'A database system that represents data as objects, as in object-oriented programming.',
'category' => 'database',
'icon' => null,
],
[
'name' => 'Time series database',
'description' => 'A database optimized for storing and querying time-stamped or time series data.',
'category' => 'database',
'icon' => null,
],
[
'name' => 'Amazon S3',
'description' => 'Amazon Simple Storage Service (S3), a scalable object storage service for the cloud.',
'category' => 'Object storage',
'icon' => null,
],
[
'name' => 'Amazon EFS',
'description' => 'Amazon Elastic File System (EFS), a managed NFS file system for AWS.',
'category' => 'File storage',
'icon' => null,
],
[
'name' => 'Amazon FSx',
'description' => 'A service to launch and run high-performance file systems in the cloud, supporting various file system types.',
'category' => 'File storage',
'icon' => null,
],
[
'name' => 'Amazon EBS',
'description' => 'Amazon Elastic Block Store (EBS), a high-performance block storage service for Amazon EC2.',
'category' => 'Block storage',
'icon' => null,
],
[
'name' => 'Google Cloud Storage',
'description' => 'Google Cloud\'s unified object storage service for live and archived data.',
'category' => 'Object storage',
'icon' => null,
],
[
'name' => 'Google Cloud Filestore',
'description' => 'A managed file storage service for applications that require a shared filesystem.',
'category' => 'File storage',
'icon' => null,
],
[
'name' => 'Google Cloud Persistent Disk',
'description' => 'Durable and high-performance block storage for Google Cloud virtual machines.',
'category' => 'Block storage',
'icon' => null,
],
[
'name' => 'Google Cloud Local SSD',
'description' => 'High-performance, ephemeral, local block storage for Google Cloud virtual machines.',
'category' => 'Block storage',
'icon' => null,
],
[
'name' => 'Persistent Volume Claim',
'description' => 'A request for storage by a user in Kubernetes, abstracting the underlying storage provider.',
'category' => 'storage',
'icon' => null,
],
[
'name' => 'Object Bucket Claim',
'description' => 'A request for an object storage bucket in Kubernetes, abstracting the object storage provider.',
'category' => 'Object storage',
'icon' => null,
],
[
'name' => 'Cloud storage',
'description' => 'A general category for data storage in which digital data is stored in logical pools across multiple servers.',
'category' => 'storage',
'icon' => null,
],
[
'name' => 'File storage',
'description' => 'A storage methodology where data is stored and organized in a hierarchical structure of files and folders.',
'category' => 'storage',
'icon' => null,
],
[
'name' => 'Block storage',
'description' => 'A technology used to store data in volumes known as blocks, common in SANs and cloud environments.',
'category' => 'storage',
'icon' => null,
],
[
'name' => 'Object storage',
'description' => 'A data storage architecture that manages data as objects, ideal for unstructured data.',
'category' => 'storage',
'icon' => null,
],
];
|