Skip to main content

Questions tagged [metadata]

Metadata is data about data, such as when it was created, and by whom, and how it is stored.

3 votes
2 answers
274 views

We store data – some kind of metadata like car manufacturers or types of computer parts – in one of our applications. This data changes rarely. Let's say it changes once every two weeks. This data is ...
Harold L. Brown's user avatar
0 votes
5 answers
223 views

Let us say I have an entity House that I want to store on a database. The House has an attribute yearBuild. If the house was build before 1990 its status should be 'ToBeSelled'. Now I have two ways to ...
Cap Barracudas's user avatar
4 votes
1 answer
3k views

What's a good way of storing and referencing files of different types (csv, pdf, jpg, html), each of which needs my own custom metadata? The metadata stores details of the content and how it was ...
MrTelly's user avatar
  • 647
1 vote
1 answer
72 views

As application evolves, so does the metadata. What are the top considerations for transitioning into a more refined metadata schema? Two example cases, which in my opinion are quite archetypal. Case ...
Roman Susi's user avatar
  • 1,803
0 votes
0 answers
485 views

What is a good way of setting up a "shared index" of file metadata, when there can be no shared process such as a database server? I'll explain the scenario: A server contains M (say 10000) large ...
Anders Forsgren's user avatar
1 vote
3 answers
1k views

Backstory I have an XML type document (SSML, which is used forText-To-Speech), which will be used to generate audio files when ssh transferred to a remote server. As such, I will need to include ...
Anon's user avatar
  • 3,649
10 votes
1 answer
823 views

Although the Java docs specify, that Weak references are primarily for canonicalizing mappings, you will find many, many, many people on the internet stating, that the WeakHashMap is perfect for ...
Leprechaun's user avatar
0 votes
1 answer
492 views

Basically what I need in my project is a number of some sort that iterates itself every time I build my project, and that I can output by my program. So for example, when generating audio, I need to ...
Anon's user avatar
  • 3,649
1 vote
1 answer
221 views

I am working with Ruby on Rails at work and have been reading the Pragmatic Programmer on the side. I was given the task to create some small registration application with ~10 form fields. From my ...
Pithikos's user avatar
  • 232
1 vote
2 answers
210 views

In our software we have a client/server architecture where the server is actually running on an embedded system with various hardware components (sensors, etc.). The different sensors as well as other ...
aKzenT's user avatar
  • 457
3 votes
1 answer
344 views

In my Node.JS projects, I save my project metadata into package.json: dependencies, version number, author, description, and so on. This makes it so anyone can clone my project and run npm install to ...
sffc's user avatar
  • 133
0 votes
1 answer
2k views

I know when a file is created date information such as date created, last modified, last opened, is automatically updated as meta data on that file. Is there other meta data though? Specifically, is ...
chopper draw lion4's user avatar
2 votes
3 answers
1k views

I'm wondering if there are any general guidelines or best practices regarding when to split data into a metadata format, as oppose to directly embedding it within the data. (Specific example below). ...
smg's user avatar
  • 135