Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
190 views

Correct response to “We're getting duplicate GUIDs!” [closed]

It's logical to use a GUID when it's the best choice for your problem (e.g. creating IDs in distributed disconnect clients for last centralised storage). People who haven't used GUIDs can be wary of ...
7
votes
3answers
2k views

In TreeSet, Sorting & Uniqueness of custom objects based on different properties

Below is my Student class class Student implements Comparable { String name; int rollNo; @Override public int compareTo(Object obj) { return ...
6
votes
4answers
95 views

Finding smallest set of criteria for uniqueness

I have a collection of objects with properties. I want to find the simplest set of criteria that will specify exactly one of these objects (I do not care which one). For example, given {a=1, b=1, ...
6
votes
10answers
476 views

Is it possible for compression algorithms to generate identical output for two different files?

I would like to know if compression algorithms always generate unique output for two different sets of files. Say, I have two files A and B, and say I am applying a compression algorithm (for ...
3
votes
3answers
1k views

ASP.NET MVC validation of uniqueness

Rails has a very convenient uniqueness validation. ASP.NET MVC doesn't. I need to make sure that the e-mail address a user has entered hasn't been registered by anyone yet. I can see only one way ...
2
votes
1answer
56 views

Uniqueness constraint ruby on rails field

I am new to ROR and been trying to fumble my way through the tutorial by mike hartl( excellent read for starters i might add ). There is however something i am struggling with, my user model looks ...
2
votes
1answer
408 views

mongoid uniqueness validation many-to-many relation

I have following association class Employee include Mongoid::Document employee_id :name references_many :companies, stored_as => :array, :inverse_of => :employees end class Company include ...
1
vote
1answer
48 views

Many-to-Many Uniqueness Constraint Test Not Working

I have a many-to-many relationship with a join table in my Rails application. I'm using the has_many :through idiom in my models. To keep things simple, lets call my first class Student, my second ...
1
vote
1answer
44 views

How to check for uniqueness on existing data in Ruby on Rails?

validates :uniqueness => true is the quick and effective way to enforce uniqueness before saving a model. Is there an easy way to check uniqueness of existing data? Iterating through each item and ...
1
vote
2answers
250 views

iOS Core Data unique object fetch

I'm fairly new to iOS/Cocoa and I have a very fundamental question about core data. I was looking over the internet to find a appropriate answer/solution but I wasn't able to. So the question is how ...
1
vote
3answers
630 views

Does a name attribute have to be unique in a HTML document?

I remember reading in the spec once that both the id attribute and the name attribute share the same namespace and have to be unique. Henceforth I've always tried to fulfill this requirement in my ...
1
vote
2answers
138 views

How to discover identical files without comparing them to eachother?

I am building a site where users can upload content. As always I aim for world dominance, so I would like to avoid storing the same file twice. For instance, if a user tries to upload the same file ...
1
vote
2answers
96 views

Uniqueness in ID

I am using the first half code below to generate a unique ID. Then i am using the entry generated in the first half as a variable for the second piece of code that generates another unique ID that is ...
1
vote
1answer
195 views

Core Data uniqueness

Is there any way I can validate a value updated in a Core Data entity's property against values of the property in other entities in the collection? At the moment I create an entity with some default ...
1
vote
5answers
165 views

What is a good way to check if an image is unique using PHP?

What is the best way to check if an image is unique using PHP? Say I have a directory of about 30 images (about 500*500 pixels), and someone uploads another picture, what is a good way to check if the ...
1
vote
1answer
60 views

Xslt - Enforcing @attribute uniqueness

I rarely work with xslt's so I'm not the greatest at it, but, I was wondering how to go about solving this problem: <Element> <childElement type="type1">Bob</childElement> ...
0
votes
1answer
34 views

Hibernate uniqueness Fields

I have a class called Iteraction this iteration have many fields in special i want do a validation of uniqueness for three fields together (startDate, endDate and Project), Project is a class. I try ...
0
votes
1answer
228 views

Implementing Unique Contraint with ValidateEntity gives “The given key was not present in the dictionary” error

While in search of trying to implement unique key validations for my db using EF CodeFirst/Mvc3 I came upon this post http://blogs.msdn.com/b/adonet/archive/2011/05/27/ef-4-1-validation.aspx which ...
0
votes
0answers
11 views

Attribute uniqueness across multiple models

Is it possible to check the uniqueness of an attribute across multiple models. Ex. I have a user and manager model that both have a username column. From the users perspective, how can i check the ...
0
votes
1answer
113 views

How should one enforce unique sets in Django ManyToMany models or MySQL?

My django model looks like this: class Entity(models.Model): name = models.CharField(max_length=40) examples = models.ManyToManyField(Example, blank=True) tokens = ...
0
votes
4answers
156 views

in python, how do I check to see if keys in a dictionary all have the same value x?

I have a dictionary list in my python code and I'm trying to check for the rare occurance of all keys having the same numerical value say 1. How would I go about doing this in an efficient manner?
0
votes
1answer
78 views

Any ideas for a model (class diagram) to track visitors for a website?

My background idea is to create a software layer that merges all the things related to anonymous visitors: -uniqueness -sessions -geo-localization -hit counter -basic reporting -distributable APIs ...
0
votes
1answer
240 views

Rails: Validating uniqueness across multiple models

Is there a way to validate the uniqueness of an attribute among columns in two different models. For example: I have a bike model and a car model. When I create a new bike, I want to validate that ...
0
votes
1answer
558 views

rails 3 - belongs_to :uniqueness

I want do a one-to-one relationship, unique. So I have in a model this association and validation belongs_to :bicycle validates :bicycle, :presence => true, :uniqueness => true And give me this ...
0
votes
1answer
176 views

Rails Model multiple column uniqueness

I am making a Viewer model with belongs_to :users belongs_to :orders that joins the models Users and Orders with a :has_many :through => :viewers. And the Viewer model has the attributes of ...
0
votes
2answers
136 views

Unique set of strings in C#

I have a list of strings, I need to be able to simply probe if a new string is in the table or not. When the list is large, testing a simple list directly is pretty inefficient... so typically I use a ...
0
votes
5answers
176 views

What is the most performant way to check for existence with a collection of integers?

I have a large list of integers that are sent to my webservice. Our business rules state that these values must be unique. What is the most performant way to figure out if there are any duplicates? ...