apotapov / gdx-artemis

Fork of artemis entity-system (http://gamadu.com/artemis/) refactored to integrate with Libgdx (http://libgdx.badlogicgames.com/)
Other
53 stars 5 forks source link

Consider using lucene OpenBitSet instead of java.util.Bitset #20

Closed apotapov closed 10 years ago

apotapov commented 10 years ago

Per documentation here:

http://lucene.apache.org/core/3_0_3/api/core/org/apache/lucene/util/OpenBitSet.html

The OpenBitSet promises to be 1.5x to 3x faster for cardinality, iteration and get.

apotapov commented 10 years ago

Replaced with libgdx Bits instead. See #40.