The granularity tag has no wiki summary.
0
votes
1answer
12 views
Double-byte memory access granularity
I am attempting to learn about memory alignment, without much success admittedly. I am using this article from IBM.
Can someone please explain to me what this excerpt means from the double byte ...
0
votes
1answer
36 views
Choosing granularity for my team's projects [closed]
I have recently been transferred into a team leader and first developer position and from there, I need to perform certain decisions where I'm just not entirely sure. Partially because I am an ...
0
votes
1answer
165 views
What's the default lock granularity in SQL Server?
I've thoroughly read MSDN about table hints and I don't seem to find the locking granularity default. Suppose I have the following query:
SELECT TOP (1) * FROM MyTable WITH (UPDLOCK, READPAST) ORDER ...
0
votes
1answer
131 views
Meaning of granularity in OOP [closed]
I was reading about the flyweight design pattern on this page.
I was not able to understand the meaning of the "granularity" in the context of programming languages or the design pattern.
Can ...
1
vote
0answers
200 views
Return a List<?> from JAX-RS service with custom object serialization
The syntax of JAX-RS is fairly simple.
@GET
@Produces(MediaType.APPLICATION_JSON)
public List<ResponseObject> service(...)
{
...
return someList;
}
where
@XmlRootElement
public class ...
13
votes
2answers
610 views
Eventlet/general async I/O task granularity
I am working on a web backend / API provider that grabs realtime data from a 3rd party web API, puts it in a MySQL database and makes it available over an HTTP/JSON API.
I am providing the API with ...
3
votes
2answers
74 views
Java function to preserve the granularity
I need to keep the granularity in a fuzzy job so I made a function which receives as parameters:
the granularity (a double between 0 and 1, 0 not included)
the value to transform, if necessary (it's ...
0
votes
1answer
885 views
gnuplot: only integer values on axis x
How can I visualize on axis x only the integer values?
I plot the function described in a file like this
0 0.5
1 0.25
2 0.125
3 0.0625
4 0
whit these commands:
set xrange [0:4]
plot ...
0
votes
1answer
173 views
How to determine compute-to-communication ratio
Given a parallel program and a well-defined hardware, how to determine its compute-to-communication ratio (CCR). This is to determine a programs' granularity and subsequent analysis. Literature ...
2
votes
2answers
381 views
Using .Net Membership / Roles to support customized authorization/access rules
I'm writing an application that will support customizable Users and Roles. By customizable, I mean that an administration form will be provided allowing the addition of Users, the creation of Roles, ...
1
vote
4answers
153 views
double granularity affecting numeric comparisons c++
Below is a test block of code that is supposed to determine equivalency of 2 doubles within a tolerance.
double lhs_1 = 0.02;
double lhs_2 = 0.04;
double rhs = 0.03;
double tolerance = 0.01;
bool ...
2
votes
3answers
51 views
SOA update request granularity and nulls
We are striving towards an SOA enterprise...
Given three options for say updating member details how do we design the contract?
The business process is quite simple. The customer calls (or logs in ...
0
votes
2answers
690 views
Free library supporting Gantt charts and granularity <= 1 hour
Is there a free graphical library that supports Gantt charts with units of hours or even minutes? I've tried a few. JFreeChart was among the most promising but scaling down seems to reduce the maximum ...
0
votes
3answers
152 views
Which granularity of controller is appropriate in MVC style for a big web site?
We (my team and I) have a big web project that will deal with many users (at least 15,000 users!). In elaboration phase we decided to code in MVC style. We confront a tradeoff (in this project all of ...
3
votes
3answers
1k views
SOA - How granular should services be to maintain performance?
I am taking over a project to replace an ancient legacy system from the ground up. Before I came on, the company hired a consultant who put together a basic sketch of the system and pushed SOA ...
2
votes
2answers
1k views
Showing NTFS timestamp with 100 nsec granularity
I understand that the FAT file system stores its time stamps for files (modify date, etc.) with a 2 second granularity, and NTFS stores them with a 100 nsec granularity.
I'm using VBScript with ...
1
vote
1answer
1k views
granularity in a MongoDB date sort?
Is it possible to sort MongoDB's date values with a granularity?
I'd like to order my results by date, but I don't care about the hour/minute/second data. I'd prefer not to have to store an ...
7
votes
6answers
1k views
How granular should tasks within a story be?
We've been recently implementing Scrum and one of the things we often wonder is the granularity of tasks within stories.
A few people inside our company state that ideally those tasks should be very ...
5
votes
1answer
116 views
Granularization of models?
I'm developing a CMS largely based on Zend Framework components. Some of the database tables for this CMS are as followed:
site
| id | name |
-------------
locale
| languageCode | regionCode |
...
15
votes
4answers
6k views
DateTime precision in NHibernate and support for DateTime2 in NHibernate SchemeExport
I am then using Fluent NHibernate and its automapping feature to map the the following simplified POCO class:
public class Foo
{
public virtual int Id { get; set; }
public virtual datetime ...
2
votes
2answers
128 views
Do you encapsulate scalars?
I find myself defining classes like:
struct AngleSize {
explicit AngleSize(double radians) : size(radians) {}
double size;
};
This has a bunch of advantages over storing anglesizes as plain ...