-
Notifications
You must be signed in to change notification settings - Fork 233
Description
thanks for making RedisGraph! it's starting to look really appealing since it's in the cloud service
would it be possible to add something like https://neo4j.com/docs/operations-manual/current/authentication-authorization/access-control/ for authorization?
I prefer Attribute or Graph Based Access Control (ABAC, GBAC) (the article and implementation describes Role based access control, RBAC) but this could be pretty handy either way for security, compliance, privacy, etc because right now, I'd still have to stick some slow-ass authorization server between users and RedisGraph. That adds multiple network hops and probably slower code than C (which would also live next to the data necessary to make the authorization decisions anyway)
also, there's a ton of interest lately in offline-first web state, and very few great options. is it theoretically possible to compile RedisGraph to WebAssembly and use the Redis Enterprise CRDT to sync some 'materialized subgraph' to a webworker embedded in a web platform?
The idea being, each user, would have access to different subgraphs of the full graph stored in the cloud. If we could run RedisGraph in WebAssembly inside our web apps, then we could just use cypher query syntax locally and have it sync automatically, no server necessary, just a cloud peer in Redis Enterprise Cloud, what do you think?