Robert Åkerblom Andersson

Results 10 issues of Robert Åkerblom Andersson

Genghis can't handle a map with keys containing dots ("."). You can insert a new document like this: ``` javascript { system_roles: { user: { "AppsRpc.Insert": true, "AppsRpc.List": true }...

See examples here on how to use new `shared: true` setting: https://groups.google.com/a/dartlang.org/forum/#!topic/misc/Ju4f2d5ziwE

See: https://github.com/DartVoid/Vane/blob/master/lib/src/generate_client_routes.dart#L15 This works: dart bin/server.dart This fails: pub run bin/server.dart Error on Linux using pub run: Unhandled exception: Unsupported operation: Cannot extract a file path from a http URI...

bug

Today when you are doing actions on a database, you have to first wait for a future before you get your connection, and by doing so you also get one...

enhancement

Today this works: ``` dart @Route("{?max}", method: GET) Future templates(String max) ``` But this does not work: ``` dart @Route("{?max}", method: GET) Future templates(int max) ``` We should make this...

enhancement

Add support for easy use of server-side events (SSE).

enhancement

Add support for zRequest as mentioned in issue #1.

enhancement

Because of the new draft for async await, it looks like "async" might become a reserved word in Dart. Therefor the name or the way a middleware is defined as...

enhancement

Hi, I recently learned about and have been testing Dart's [application snapshots](https://github.com/dart-lang/sdk/wiki/Snapshots). In my tests it speeds up execution quite a lot* and I was thinking it would be nice...

type-enhancement