benbro
benbro
I would like to suggest adding a chapter about injecting a service and a scope to components. These are important features needed by anything that is more than just an...
Using the arrayify formatter in the template instead of the _categories list will simplify the code: ``` html {{category.key}} ``` https://github.com/angular/angular.dart.tutorial/blob/master/Chapter_06/lib/component/search_recipe_component.html#L10 https://github.com/angular/angular.dart.tutorial/blob/master/Chapter_06/lib/component/search_recipe_component.dart#L20 Arrayify formatter: https://github.com/angular/angular.dart/commit/d2780f8bb849c62d995d939d00594ebe93428631
The pool name is used to [register](https://github.com/erleans/pgo/blob/main/src/pgo.erl#L97) the pid and [find](https://github.com/erleans/pgo/blob/main/src/pgo_pool.erl#L321) it: ``` gen_server:start_link({local, Pool}, ?MODULE, {Pool, PoolConfig1}, []). erlang:whereis(Pool) ``` Having a default pool name is useful but isn't...
This gives an error: ```erlang pgo:query(>, [{{2020, 2, 1}, {0, 0, 0}}]). {error,function_clause} ``` Casting to timestamptz works: ```erlang pgo:query(>, [{{2020, 2, 1}, {0, 0, 0}}]). #{command => select,num_rows =>...
tstzrange in PostgreSQL: ```pgsql tstzrange('2019-12-01 00:00:00+00','2019-12-02 00:00:00+00','[)') ``` In pgo: ```erlang {{{{2019,12,1},{0,0,0}},{{2019,12,2},{0,0,0}}},{true,false}} ``` Is it possible to remove one pair of parentheses to make the representation closer to PostgreSQL? ```erlang...
The [SHOW command doc](https://github.com/antirez/disque#show-job-id) is missing info about what fields are returned.
README says: > Disque is a synchronously replicated job queue. By default when a new job is added, it is replicated to W nodes before the client gets an acknowledgement...
Is it possible to promote a job to the head of the queue?
I have one disque server with two workers, all on the same machine. I'm adding a job with RETRY of 12 hours and TTL of 72 hours: ADDJOB queue_name job...
When you have a long video, it takes minutes to run, even when the dropped segment is very short. Is it possible to jump to the timestamp and scan backwards/forward...