Simer

Results 78 issues of Simer

```scala ``` generates this code which loses the spacing ```scala

enhancement

Currently all styles get added to `js.Dictionary`. But the newer versions have typed properties This HTML ```html ``` currently generates this ```scala "none", "padding" -> "0")) ``` But now we...

enhancement

Here the tag `path` and attribute `version` are not recognised and should be automatically wrapped in `Attr` or `VdomAttr` ```scala svg(attr("aria-hidden") := "true", cls := "some class", version := "1.1",...

enhancement

Memory-mapped files currently maintain a read reference counter (`AtomicLong`) so that the memory-cleaner knows to clear mapped bytes only when the file is not being accessed. Since `clear` is most...

performance

Value classes, specially when searching Segments can reduce instance allocations when performing binary-search, hash-index search, bloom-filter search and linear-search. I would expect GC workload to be noticeably reduced.

performance

# Overview Currently `IO.Defer` instance is created to execute each request to support all effect types/libraries such as `Try`, `Future`, `ZIO`, `Cats-effect`, `Glass` etc. # Issue `IO.Defer` is a heap...

performance

[`map.get(key)`](https://swaydb.io/api/get/?language=java) returns an `Optional`. Another `getOrNull` API annotated with `@Nullable` is required for cases where we do not want to create `Optional` instances in Java or `Option` in Scala. `map.getOrNull(key)`...

feature
java
usability

Support `immutable` data-structures. # Config Being less complicated, `Immutable` data types can very easily be preconfigured to allow high performance in all areas so they should be supported internally. #...

feature

## Context Data can be distributed to multiple disks by specifying [distribution ratio](http://swaydb.io/configuration/otherDirs/?language=scala&q=distribution%20ratio) for each disk. ## Issue Currently the ratio is based on file count and not file size....

Improvement
production release

[cacheefficientbloomfilters-jea.pdf](https://www.cs.amherst.edu/~ccmcgeoch/cs34/papers/cacheefficientbloomfilters-jea.pdf)

feature
performance