Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. SOTD: Prefered Storage

SOTD: Prefered Storage

Scheduled Pinned Locked Moved The Lounge
visual-studiocomquestion
21 Posts 17 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H HalfWayMan

    Flat binary files. Preferably in opposite endianness. This data must also be compressed using a shockingly poor proprietary compression method.

    C Offline
    C Offline
    Chris Losinger
    wrote on last edited by
    #12

    HalfWayMan wrote:

    This data must also be compressed using a shockingly poor proprietary compression method.

    maybe Base64-encoding? it features an impressive 3:4 compression ratio.

    image processing toolkits | batch image processing | blogging

    1 Reply Last reply
    0
    • M MoustafaS

      I think XML files will be good.

      ------------------------------
      "The Soapbox has been so ..."

      C Offline
      C Offline
      Chris Losinger
      wrote on last edited by
      #13

      <Response> <Name>Chris Losinger</Name> <Msgtext> I 4<super>th</super> it! </Msgtext> </Response>

      image processing toolkits | batch image processing | blogging

      M 1 Reply Last reply
      0
      • L lost in transition

        Survey of the Day What type of storage do you prefer to use for an application where the data to be stored is minimun? i.e.: records < 100

        Programmer: A biological machine designed to convert caffeine into code.
        Developer: A person who develops working systems by writing and using software. [^]

        E Offline
        E Offline
        El Corazon
        wrote on last edited by
        #14

        jason_lakewhitney wrote:

        for an application where the data to be stored is minimun?

        random access in real-time? or load and forget? or load and in-memory retrieve? random access to disk in real-time you want an indexed database, either a light SQL, or a self-built (many libraries out there for b-tree, m-tree, etc indexing). You want to choose something for rapid reading, including binary files if the data is indexed sequentially and doesn't need to be resorted. (though the latter is frowned upon -- go for the light SQL) load and forget or in-memory retrieve after load works great for XML. the right tool for the right job. :)

        _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

        1 Reply Last reply
        0
        • L lost in transition

          Survey of the Day What type of storage do you prefer to use for an application where the data to be stored is minimun? i.e.: records < 100

          Programmer: A biological machine designed to convert caffeine into code.
          Developer: A person who develops working systems by writing and using software. [^]

          S Offline
          S Offline
          Shog9 0
          wrote on last edited by
          #15

          If it's only a few hundred KB, max, i'll go with XML. XML's fairly easy, saves me writing a complicated parser, and allows a fair bit of structure to be represented. Also, it's easy to use XSLT to generate reports, or use a text editor to view or tweak...

          ---- Scripts i’ve known... CPhog 1.8.2 - make CP better. Forum Bookmark 0.2.5 - bookmark forum posts on Pensieve Print forum 0.1.2 - printer-friendly forums Expand all 1.0 - Expand all messages In-place Delete 1.0 - AJAX-style post delete Syntax 0.1 - Syntax highlighting for code blocks in the forums

          1 Reply Last reply
          0
          • C Chris Losinger

            <Response> <Name>Chris Losinger</Name> <Msgtext> I 4<super>th</super> it! </Msgtext> </Response>

            image processing toolkits | batch image processing | blogging

            M Offline
            M Offline
            MoustafaS
            wrote on last edited by
            #16

            Nice one.:laugh:

            ------------------------------
            "The Soapbox has been so ..."

            1 Reply Last reply
            0
            • L lost in transition

              Survey of the Day What type of storage do you prefer to use for an application where the data to be stored is minimun? i.e.: records < 100

              Programmer: A biological machine designed to convert caffeine into code.
              Developer: A person who develops working systems by writing and using software. [^]

              T Offline
              T Offline
              TridentWhite
              wrote on last edited by
              #17

              Index cards. Small, compact, easily indexed and searched and not susceptible to the occassional EMP.


              Happiness is knowing that somewhere out there, there is a bullet with your name on it.

              1 Reply Last reply
              0
              • L lost in transition

                Survey of the Day What type of storage do you prefer to use for an application where the data to be stored is minimun? i.e.: records < 100

                Programmer: A biological machine designed to convert caffeine into code.
                Developer: A person who develops working systems by writing and using software. [^]

                M Offline
                M Offline
                Member 96
                wrote on last edited by
                #18

                Without reading the other responses and since you said "records" adn "data" I'm assuming you don't mean an ini file type data. I'd store it as xml, there really isn't any other choice worth doing is there?

                P 1 Reply Last reply
                0
                • N Nemanja Trifunovic

                  jason_lakewhitney wrote:

                  What type of storage do you prefer to use for an application where the data to be stored is minimun? i.e.: records < 100

                  Just display the data on the screen and give the user 5 seconds to take a photo of it.


                  Programming Blog utf8-cpp

                  M Offline
                  M Offline
                  Member 96
                  wrote on last edited by
                  #19

                  Or 30 seconds to "write down everything you see on the screen quickly and accurately" with a rolling countdown and increasingly nerve inducing music.

                  1 Reply Last reply
                  0
                  • H HalfWayMan

                    Flat binary files. Preferably in opposite endianness. This data must also be compressed using a shockingly poor proprietary compression method.

                    B Offline
                    B Offline
                    Bassam Abdul Baki
                    wrote on last edited by
                    #20

                    Just use the Windows' registry. :)


                    "The trouble with the profit system has always been that it was highly unprofitable to most people." - E. B. White Web - Blog - RSS - Math - LinkedIn - BM

                    1 Reply Last reply
                    0
                    • M Member 96

                      Without reading the other responses and since you said "records" adn "data" I'm assuming you don't mean an ini file type data. I'd store it as xml, there really isn't any other choice worth doing is there?

                      P Offline
                      P Offline
                      PIEBALDconsult
                      wrote on last edited by
                      #21

                      Yeah, XML. And VS 2005 projects have a "Settings" page which may be of use.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups