kcajf

Results 23 issues of kcajf

I have a lot of code that deals with DateTimes. Occasionally I do stuff with funny timezones, but a vast majority of the time I represent things in UTC. Operations...

Looking at the code, it seems that `nthrds` is always capped at `Threads.nthreads()`. Is this restriction necessary? For example, I have some heavily IO bound tasks and I'd like to...

Hi, Currently it seems the menu is entirely dependent on ui-router, and that every menu link corresponds to a state. Is there any way to forgo that for certain links...

enhancement

When using e.g. `PlotScatterG`, it seems like the getter is called twice for each data point. Is this expected / documented?

I would like to be able to set the `async_insert` setting when inserting data, as documented here: https://clickhouse.com/docs/en/optimize/asynchronous-inserts Is there a way to do this?

enhancement

Sometimes I'm starting with an existing array of Ints (`refs`), and a `pool` vector. Is there a friendly way to make a PooledArray out of that? I couldn't find one...

If you use `load_all_file`, you only get a single document because the `eof(it.input)` in the iteration code returns `true` since the file handle gets closed after the function returns. Doing...

bug

``` julia> data = rand(Float32, 1_000_000); julia> io = open("foo", "w"); julia> zio = CodecZstd.ZstdCompressorStream(io); julia> @time write(zio, data) 0.023578 seconds (60.39 k allocations: 2.623 MiB) 4000000 julia> @time write(zio,...

Performance was much worse than expected for the UniqueHashIndex that I was using, so I started digging into it. I could be doing something wrong, but from the below it...

This is useful to me, and could be useful to others. I often have UniqueHashIndexes that never get indexed into into (either the indexing is more often happening on another...