storage VS StackExchange Redis

Compare storage vs StackExchange Redis and see what are their differences.

storage

S3 compatible object storage service that stores metadata in Postgres (by supabase)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
storage StackExchange Redis
19 7
647 5,794
14.2% 1.1%
8.3 8.0
2 days ago 4 days ago
TypeScript C#
Apache License 2.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

storage

Posts with mentions or reviews of storage. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-18.
  • Supabase Storage: now supports the S3 protocol
    5 projects | news.ycombinator.com | 18 Apr 2024
    [3] https://github.com/supabase/storage/issues/439
    5 projects | dev.to | 18 Apr 2024
    The Supabase Storage Engine is fully open source and is one of the few storage solutions that offer 3 interoperable protocols to manage your files:
  • What's the simplest solution to sell digital downloads via SvelteKit?
    1 project | /r/sveltejs | 5 Dec 2023
    For instance, consider a supabase setup where you place your photos in storage and your orders in a table. Then, have a function run automatically whenever a new row is added to the orders table. That function would be responsible for identifying what the customer bought and delivering it to them.
  • Managify: Manage Your Teams Easily
    6 projects | dev.to | 20 Jul 2023
    In this page, I used Supabase Storage to store the files uploaded by the users
  • HELP -> ERROR: function st_point(double precision, double precision) does not exist (SQLSTATE 42883)
    1 project | /r/Supabase | 19 Jun 2023
    -- Create a table for public profiles CREATE TABLE profiles ( id UUID REFERENCES auth.users ON DELETE CASCADE PRIMARY KEY, updated_at TIMESTAMP WITH TIME ZONE, username TEXT NULL, full_name TEXT, profile_image_url TEXT, bio TEXT, sex SMALLINT DEFAULT 0, CONSTRAINT username_length CHECK (CHAR_LENGTH(username) >= 3) ); -- Create a table for channeles CREATE TABLE channeles ( id SERIAL PRIMARY KEY, userRefId UUID REFERENCES auth.users(id), channel TEXT, updated_at TIMESTAMP WITH TIME ZONE ); -- Create a table for geo location CREATE TABLE user_geo ( id SERIAL PRIMARY KEY, userRefId UUID REFERENCES auth.users(id), location GEOGRAPHY(point) NOT NULL, updated_at TIMESTAMP WITH TIME ZONE ); create index user_geo_index on public.user_geo using GIST (location); -- Set up Row Level Security (RLS) -- See https://supabase.com/docs/guides/auth/row-level-security for more details. ALTER TABLE profiles ENABLE ROW LEVEL SECURITY; CREATE POLICY "Public profiles are viewable by everyone." ON profiles FOR SELECT USING (TRUE); CREATE POLICY "Users can insert their own profile." ON profiles FOR INSERT WITH CHECK (auth.uid() = id); CREATE POLICY "Users can update own profile." ON profiles FOR UPDATE USING (auth.uid() = id); -- Set up Row Level Security (RLS) -- See https://supabase.com/docs/guides/auth/row-level-security for more details. ALTER TABLE channeles ENABLE ROW LEVEL SECURITY; CREATE POLICY "Public channeles are viewable by everyone." ON channeles FOR SELECT USING (TRUE); CREATE POLICY "Users can insert their own channeles." ON channeles FOR INSERT WITH CHECK (auth.uid() = userRefId); CREATE POLICY "Users can update own channeles." ON channeles FOR UPDATE USING (auth.uid() = userRefId); -- Set up Row Level Security (RLS) -- See https://supabase.com/docs/guides/auth/row-level-security for more details. ALTER TABLE user_geo ENABLE ROW LEVEL SECURITY; CREATE POLICY "Public geo_location are viewable by everyone." ON user_geo FOR SELECT USING (TRUE); CREATE POLICY "Users can insert their own geo_location." ON user_geo FOR INSERT WITH CHECK (auth.uid() = userRefId); CREATE POLICY "Users can update own geo_location." ON user_geo FOR UPDATE USING (auth.uid() = userRefId); -- See https://supabase.com/docs/guides/auth/managing-user-data#using-triggers for more details. CREATE OR REPLACE FUNCTION public.handle_new_user() RETURNS TRIGGER AS $$ BEGIN INSERT INTO public.profiles ( id, updated_at, username, full_name, profile_image_url, bio, sex, ) VALUES ( NEW.id, NOW(), NEW.raw_user_meta_data->>'username', NEW.raw_user_meta_data->>'full_name', NEW.raw_user_meta_data->>'profile_image_url', NEW.raw_user_meta_data->>'bio', COALESCE(CAST(NEW.raw_user_meta_data->>'sex' AS SMALLINT), 0), ); INSERT INTO public.channeles (userRefId, channel, updated_at) VALUES (NEW.id, NEW.raw_user_meta_data->>'expoToken', NOW()); INSERT INTO public.user_geo (userRefId, location, updated_at) VALUES ( NEW.id, ST_Point(CAST(NEW.raw_user_meta_data->>'lat' AS FLOAT), CAST(NEW.raw_user_meta_data->>'lng' AS FLOAT)), NOW() ); RETURN NEW; END; $$ LANGUAGE plpgsql SECURITY DEFINER; CREATE TRIGGER on_auth_user_created AFTER INSERT ON auth.users FOR EACH ROW EXECUTE FUNCTION public.handle_new_user(); -- Set up Storage! INSERT INTO storage.buckets (id, name) VALUES ('profile_images', 'profile_images'); -- Set up access controls for storage. -- See https://supabase.com/docs/guides/storage#policy-examples for more details. CREATE POLICY "profile_image images are publicly accessible." ON storage.objects FOR SELECT USING (bucket_id = 'profile_images'); CREATE POLICY "Anyone can upload a profile_image." ON storage.objects FOR INSERT WITH CHECK (bucket_id = 'profile_images');
  • Supabase alternatives
    4 projects | /r/Supabase | 31 May 2023
    For example the storage-api. I was on version supabase/storage-api:v0.29.1 for a long time, until I realized, that there is a new version of it (0.40.1). Fast forward, upgraded everything, checked my application and everything storage related stopped working. From now on it's always the same procedure. Debugging the errors, digging through the code on GitHub, checking commits, issues, etc. After a while I found a bug from 2019 which had exactly the same error as I, tested the workaround and it worked again (partially, workaround).
  • A Rounded Solution to Image Handling on the OpenSauced Dashboard
    5 projects | dev.to | 17 May 2023
    Alternatively, we could use imagemagick (cli tool for image transforms) + supabase storage to do the same for free.
  • AWS Amplify Is a Grift
    2 projects | news.ycombinator.com | 10 Apr 2023
    [5] https://supabase.com/docs/guides/storage
  • Building a Startup from Scratch: My Mistakes as CTO
    2 projects | dev.to | 1 Feb 2023
    Storage
  • Any idea how to limit file upload size ?
    1 project | /r/Supabase | 12 Jan 2023
    We'll probably need to upload other types of assets in the future, so having a way to set the limit per bucket would be nice... There's an issue for this - I may make a PR to implement it at some point.

StackExchange Redis

Posts with mentions or reviews of StackExchange Redis. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-28.
  • "Clean" Code, Horrible Performance
    8 projects | /r/programming | 28 Feb 2023
    Yet their high performing custom redis client code or Dapper is as clean as could be.
  • Redis University RU102N: Redis for .NET Developers
    2 projects | dev.to | 1 Feb 2023
    The best practices for using the Redis client StackExchange.Redis
  • Create Logger for Microservices Powered By RedisSearch & RedisJSON
    6 projects | dev.to | 15 Sep 2022
    To connect Redis from .NET Required Some sort of DB Driver & ORM. StackExchange Redis is popular amongst .NET Developers to connect Redis instances. But for easy use of Redis search & Redis JSON features, we will use Redis OM. NET.
  • Editor crashes after update to 2021.2
    1 project | /r/Unity3D | 2 Mar 2022
    The code which produces the error is from a plugin I've added to my project called StackExchange.Redis. https://github.com/StackExchange/StackExchange.Redis Said plugin has a ref struct called BufferReader https://github.com/StackExchange/St.../main/src/StackExchange.Redis/BufferReader.cs
  • MOVED error with Redis cluster
    8 projects | dev.to | 5 Feb 2022
    StackExchange.Redis offers support for C# (and should work fine with most .NET languages; VB, F#, etc)
  • A quick reminder to those starting with .NET and wondering where it might be used .. Stack Overflow is built with .NET
    1 project | /r/dotnet | 21 Aug 2021
    https://github.com/StackExchange/StackExchange.Redis/issues/1279 is an example... We had people storing big json docs which blocks the "multiplexer" and needed a pool. Fine, but the docs indicated you only need one. StackExchange.Redis.Extensions fixes a lot of the problems, but it's not from stack exchange and they don't support it.
  • Deploying Twemproxy to GCP
    1 project | dev.to | 20 Mar 2021
    For example in C# the Nuget package StackExchange.Redis has a configuration object that must register the Twemproxy server to work correctly. The only difference between using this package directly against Memorystore and indirectly through Twemproxy is the Proxy property of the ConfigurationOptions object. The API for setting and retrieving data from the cache remains the same.

What are some alternatives?

When comparing storage and StackExchange Redis you can also consider the following projects:

supabase - The open source Firebase alternative.

ServiceStack Redis - .NET's leading C# Redis Client

supabase-js - An isomorphic Javascript client for Supabase. Query your Supabase database, subscribe to realtime events, upload and download files, browse typescript examples, invoke postgres functions via rpc, invoke supabase edge functions, query pgvector.

redis-om-dotnet - Object mapping, and more, for Redis and .NET

auth - A JWT based API for managing users and issuing JWT tokens

Npgsql - Npgsql is the .NET data provider for PostgreSQL.

nextjs-auth0 - Next.js SDK for signing in with Auth0

RedLock.net - An implementation of the Redlock algorithm in C#

postgrest - REST API for any Postgres database

MongoDB - The Official C# .NET Driver for MongoDB

fastify-multipart - Multipart support for Fastify

Couchbase - The official Couchbase SDK for .NET Core and Full Frameworks