Giter VIP home page Giter VIP logo

Comments (3)

a29107a avatar a29107a commented on June 26, 2024

like mysql:
select * from table limit 1,10;

from cache.

fogfish avatar fogfish commented on June 26, 2024

Hello,

Thank you for your comments!

This is an interesting request. I'd like to understand your use-cases and reasons of asking this feature.
This feature sounds as typical I/O patterns for in-memory data storages (e.g. ETS, Redis, ...).
What is the reason to implement this feature as part of caching?

First of all, it requires a different storage strategy for cache elements. We need to compromise O(1) vs O(log N). Fortunately, existed cache implementation has a config option https://github.com/fogfish/cache/blob/master/src/cache.erl#L131

{ok, _} = cache:start_link([{type, ordered_set}]).

This option ensures that keys are sorted alphanumerically within the segments. However, segments are still sorted by time. Therefore, the total ordering is lexicographical + time. Let's assume cache has three segments:

Seg 1 Seg 2 Seg 3
aa ab ba
ac ca cb
bc bb -
cc - -

The total key order is aa, ac, bc, cc, ab, ca, bb, ba, cb. Is this ordering schema suitable for your use-cases?

Please aware that cache api provides you an ability to access all ETS tables
https://github.com/fogfish/cache/blob/master/src/cache.erl#L166

cache:i(..., heap)

You can use ETS query api to fetch data.

from cache.

a29107a avatar a29107a commented on June 26, 2024

@fogfish
ok,i know what you say!thanks!

from cache.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.