Benny Nazimov
Benny Nazimov
@evoxmusic Since I don't have an available AWS account, I don't think I can reproduce this error ๐
@evoxmusic I think [mssql-scripter](https://github.com/Microsoft/mssql-scripter) would be the perfect tool for creating and restoring dumps for mssql. Also, [this page](https://www.mssqltips.com/sqlservertip/5913/mssqlscripter-tool-and-examples-to-generate-scripts-for-sql-server-objects/) contains a lot of information about how to use the mentioned...
This also somewhat bothered me, it does make development with a lot of re-builds a little annoying. A very simple solution would be to add ```rust #![allow(unused)] // TODO remove...
@pascalgrimaud It's great that you want to learn Rust and contribute and I'd be happy to help with what I can ๐ It's just that most of these warnings as...
As opposed to the other databases we support (PostgreSQL, MySQL, MongoDB) it seems that Redis has no official dump and restore tools (please correct me if I'm wrong here). However,...
> Meaning, as a user I want to indicate that column collection_a.post_id is linked to column collection_b.id How would you indicate that as a user? If there isn't a known...
This could work, but I think it'd be best if we'd limit this to IDs only, i.e you can only reference from a field of type `bson::oid::ObjectId` to another field...
> * [ ] Any user can login - and make his own catalog. suggestion: catalogs made by users will have **likes**. (๐ ) any user will have an option...
@benjamin-kirkbride The idea was to stay as close as possible to the upstream C implementation, which also uses client indexes in its external API: https://github.com/mas-bandwidth/netcode/blob/main/netcode.h#L237 You can use [netcode::Server::client_id](https://docs.rs/netcode-rs/1.3.0/netcode/struct.Server.html#method.client_id) to...
> Is there a way to get a list of connected `ClientIndex`? is the expectation that store them as they connect out of band, somehow? Yep, that's the expectation. >...